#include using namespace std; int main () { int a; cin >> a; cout << (a / 100) // 3 << (a % 10) // 1 << (a / 10 % 10) // 2 ; return 0; }