#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int g=n/1%10,s=n/10%10; cout<<g<<s; return 0; }