H. Конвертация
unknown
c_cpp
2 years ago
153 B
15
Indexable
#include <bits/stdc++.h>
using namespace std;
int main() {
char x;
cin >> x;
int k = x - 'a';
cout << char(k + 'A');
return 0;
}
Editor is loading...
Leave a Comment