import std.stdio, std.conv, std.string, std.range, std.math, std.algorithm; void main() { auto input = readln.split.to!(real[]); auto Xp = input[0], Yp = input[1]; ((sqrt(Xp * Xp + Yp * Yp) * 2).floor + 1).writeln; }