x = 7
print('Number: ' + str(x))
#str() turns anything inside to a string which allows you to
#add it to another/different string
print('sum is : ' +str(25))
a, b = int(input()), int(input())
print((a + b), (a - b), (a * b), sep='
')
x = int ("5") + int("7")
print (x)