#sequence program a = int(input('Input a: ')) b = int(input('Input b: ')) c = (a+b)**2 print('(a+b)**2=',c)