#include char to_upper(char c){ if(c>='a' && c<='z') c-=32; return c;}void main(){ int c = getchar(); putchar(to_upper(c));}