#include #include using namespace std; int main(){ int xp,yp; cin >> xp >> yp; cout << int(sqrt(pow(abs(xp),2) + pow(abs(yp),2)) + 1) * 2 << endl; }