#include <bits/stdc++.h> using namespace std; #define int long long signed main(){ int N; cin>>N; cout<<N/100<<(N%100)/10<<N%10<<endl; }