编辑代码

#include <iostream>
using namespace std;
int main() {
    char a;
    cin >> a;
    cout << a - ('a' - 'A') << endl;
	return 0;
}