H. Конвертация
Anonymous
c_cpp
11/21/2023 5:20 AM
204 B
27
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