void print_hello(char *s);
int main()
{
    print_hello("Android");
    return 0;
}