#include <stdio.h>
#include <string.h>
#include <iostream>
int main()
{
system(
"cls"
);
char s;
printf(
"Please put 1 to 5 : "
scanf(
"%s"
,&s);
switch
(s)
case
'1'
: printf(
"one"
break
;
'2'
"two"
'3'
"three"
'4'
"four"
'5'
"five"
default
"None"
}
getchar();
return
(0);