You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
281 B

#include <bits/stdc++.h>
using namespace std;
int main() {
char c;
cin >> c;
cout << char(c - 32) << endl;
printf("%c\n", c - 32);
printf("%c\n", c - 'a' + 'A');
char ans;
ans = c - 'a' + 'A';
cout << ans << endl;
return 0;
}