#squence program x = int(input('input x: ')) y = int(input('input y: ')) z = (x + y) **2 print('(x+y)**2 = ',z )