#include<stdio.h>
void student(int name)
{
    printf("Hello %d",name);
}
int main()
{
    student("11\n");
    student("21\n");
    
    return 0;
}