#include #define REP(i,n) for(int i=0; i<(n); i++) #define REP2(i,x,n) for(int i=x; i<(n); i++) using namespace std; struct btk{btk(){ios::sync_with_stdio(false);cin.tie(0);}}btk; int main() { int X, Y; cin >> X >> Y; double res = sqrt( pow( X, 2 ) + pow( Y, 2 ) ) + 0.5; cout << static_cast( res * 2 ) << endl; return 0; }