# Addition print ('Operanden:') x = int(input('x = ')) y = int(input('y = ')) print() z = x + y print('Summe:',z)