#include<stdio.h>
int main()
{
char *s = "Hello world";
printf(s);


return 0;
}
