17 lines
247 B
C
17 lines
247 B
C
#include <stdio.h>
|
|
#include<string.h>
|
|
#include<ctype.h>
|
|
|
|
|
|
int main()
|
|
{
|
|
char str[100];
|
|
scanf("%[^\n]s",str);
|
|
for(int i=0;i<strlen(str);i++){
|
|
str[i]=toupper(str[i]);
|
|
}
|
|
|
|
printf("%s\n",str);
|
|
return 0;
|
|
}
|