// #include <iostream>
// using namespace std;

// int main() {
//     int a, b;
//     while (cin >> a >> b) { // 注意 while 处理多个 case
//         cout << a + b << endl;
//     }
// }
// // 64 位输出请用 printf("%lld")

#include <bits/stdc++.h>
#include <string>
using namespace std;

int main(){
    string str;
    while (cin >> str) {
        cout << stoi(str, 0, 16) << endl;
    }
    return 0;
}