8.How to read input and number from a user in python?
Answers
Answered by
0
Answer:
please thanks for the answer
please mark as brainliest answer
Explanation:
Python 3. x example
a = int(input("Enter an Integer: "))
b = int(input("Enter an Integer: "))
print("Sum of a and b:",a + b)
print("Multiplication of a and b:",a * b)
Similar questions