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