#include <iostream>#include <string>using namespace std;int main(){int i;string s1;cin >> s1;for (i = 0; i < s1.size(); i++)s1[i] -= 32;cout << s1 << endl;return 0;}
'백준' 카테고리의 다른 글
[10995] 별 찍기 - 20 (0) | 2018.08.29 |
---|---|
[15156] 과제 (0) | 2018.08.27 |
[2386] 도비의 영어 공부 (0) | 2018.08.26 |
[2743] 단어 길이 재기 (0) | 2018.08.25 |
[15894] 수학은 체육과목입니다 (0) | 2018.08.25 |