#include <stdio.h>
void student(char name[])
{
    printf("Hello %s",name);
}
int main(){
    student("Mahe\n");
    Student("Sriram\n");
    return 0;
}