Write a program to do four arithmetic operations (ex: Addition, subtraction, multiplication and division). Make each operation a separate function. Get two numbers from the user and perform the operations.
Answers
Answered by
0
Answer:
Using python
Explanation:
a=int(input("Enter a number"))
b=int(input("Enter a number"))
c=a+b
print(c)
c=a-b
print(c)
c=a*b
print(c)
c=a/b
print(c)
Similar questions
Social Sciences,
1 month ago
Math,
1 month ago
Science,
1 month ago
Math,
3 months ago
English,
9 months ago