You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
245 B

#include <bits/stdc++.h>
using namespace std;
int main() {
char s[110];
scanf("%s", s);
for (int i = 0; s[i] != '\0'; i++)
if (s[i] >= 'a' && s[i] <= 'z') s[i] -= 'a' - 'A';
printf("%s\n", s);
return 0;
}