#include <bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f; cin>>a; cin>>b; cin>>c; d=a*100; e=b*10; f=c; cout<<d+e+f; return 0; }