print('\n\tEnter the two number(execpt zero)')
x = int(input("\n\tEnter the number 1: ")) # input of number 1
y = int(input("\tEnter the number 2: ")) # input of number 2
addition = int(x+y) # adding statement
subtaction = int(x-y) # subtracting statement
multiply = int(x*y) # multiply statement
divide = int(x/y) # divide statement
print("-----------X-----------X-----------X-----------")
print("\tThe addition of this numbers is: ", addition)
print("\tThe subtraction of this numbers is: ", subtaction)
print("\tThe multiplication of this numbers is: ", multiply)
print("\tThe division of this numbers is: ", divide)