#include <iostream>
int main() {
using namespace std;
string str;
getline(cin, str);
cout << str[str.length()-1];
}
#include <iostream>
int main() {
using namespace std;
string str;
getline(cin, str);
cout << str[str.length()-1];
}