Input
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
name = input("What's your name? ")
num = int(input("Give me a number: "))
money = float(input("How much money do you have? "))num1 = int(input("Number 1: "))
num2 = int(input("Number 2: "))
print("Sum:", num1 + num2)
print("Difference:", num1 - num2)
print("Product:", num1 * num2)
print("Quotient:", num1 / num2)
print("Integer Division:", num1 // num2)
print("The Remainder of num1 divided by num2:", num1 % num2)