# Two numbers are add, mult, sub, div on at a time?
a = int(input("Enter your first number"))
b = int(input("Enter your second number"))
add = a + b
mult = a * b
sub = a - b
div = a / b
print("Your result is ","\n","Add two number",add,"\n","mul two number",mult,"\n","div two number",div,"\n","sub two number",sub)
Post a Comment
If you have any doubts. Please Let me Know