Title basically says it all.
This is my script:
keepProgramRunning = True
a = int(input("Type a value for a: "))
b = int(input("Type a value for b: "))
print("Result when multiplying: ", a*b)
print("Result when dividing: ", a/b)
print("...", a-b)
print("...", a+b)
How can i see the results after i typed a value of a and b without cmd automatically closing.
Wait for another input