#include<stdio.h> int main() { char s[100]; while(scanf("%s",s)!=EOF) { if(s[0]>=97&&s[0]<=122) { s[0]=s[0]-32; } printf("%c",s[0]); } return 0; }