#include<iostream> using namespace std; int main(){ int a,b,c,n; cin>>a>>b>>c; n=a*100+b*10+c; cout<<n<<endl; }