#include <stdio.h>
#define N 80
int main(int argc, char *argv[]) {
char a[N];
printf("Hello,where are you from?\n");
gets(a);
if(strcmp(a,"China")==||strcmp(a," the People's *")==)
printf("Wow,i am a Chinese,too.\nToday is a birthday of our country.\nLet's wish our motherland to have a happy birthday!");
else printf("Nice to meet you!");
return ;
}