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