a2 + b2 = c2 이므로, b2 = c2 - a2
a = int(input()) c = int(input()) b_square = c**2 - a**2 print(b_square)