#include<stdio.h> int main() { char b; scanf("%c",&b); if(b>='A'&&b<='Z') putchar(b); if (b>96&&b<123) printf("%c\n",b-32); return 0; }
posted on 2022-04-12 20:03 王陈锋 阅读(485) 评论(0) 编辑 收藏 举报