8 lines
104 B
C
8 lines
104 B
C
#include<stdio.h>
|
|
|
|
int main() {
|
|
char a;
|
|
scanf("%c", &a);
|
|
printf("%c", a-32);
|
|
return 0;
|
|
} |