#include<stdio.h>
#include<conio.h>

int main()
{
printf("Hello Max./n");
printf("Press a key to exit.");
getch();
return 0;
}