// DOS>cl /clr cl0201.cpp /D_CRT_SECURE_NO_DEPRECATE
#include <stdio.h>
void main()
{
int i;
printf(
"Put integer :"
);
scanf (
"%d"
,&i);
"\nYou put %d"
,i);
getchar();
}