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