L8 - C

public
yeskendir.sultanov Mar 28, 2024 Never 151
Clone
C++ l8c.cpp 11 lines (9 loc) | 149 Bytes
1
#include <bits/stdc++.h>
2
3
using namespace std;
4
5
int main() {
6
char x;
7
cin >> x;
8
x = toupper(x);
9
cout << x;
10
return 0;
11
}