#NOIP2014J1Q25. [NOIP 2014 普及组初赛] 第 25 题
[NOIP 2014 普及组初赛] 第 25 题
#include <iostream>
#include <string>
using namespace std;
int main() {
string st;
int i, len;
getline(cin, st);
len = st.size();
for(i = 0; i < len; i++)
if(st[i] >= 'a' && st[i] <= 'z')
st[i] = st[i] - 'a' + 'A';
cout << st << endl;
return 0;
}
请填写答案。
{{ input(1) }}