#include <iostream>
using namespace std;

int main() {
	// your code goes here
	using byte = unsigned char;
	byte c;
	cin >> c;
	cout << c;
	return 0;
}