#include<stdio.h> #include<string.h> int main() { char str1[101]; scanf("%s",str1); printf("%s",strupr(str1)); return 0; }