// test visual studio08 1.cpp : Defines the entry point for the console application.
//

#include "stdio.h"


int main(int argc, char *argv[])
{
	char ch;

	printf("Hello World\n");
	scanf("%c",&ch);
	printf("You entered %c\n",ch);
	scanf("%c\n",&ch);

	return 0;
}

