write a program to calculate sum of two values in python
Answers
Answered by
9
Answer:
Python Program to Add Two Numbers
a = int(input("enter first number: "))
b = int(input("enter second number: "))
sum = a + b.
print("sum:", sum)
Answered by
0
Answer:
Python Program to Add Two Numbers
1.a = int(input("enter first number: "))
2.b = int(input("enter second number: "))
3 sum = a + b.
4.print("sum:", sum)
Explanation:
i hope it's help you:)
Similar questions
English,
1 month ago
Accountancy,
1 month ago
Math,
1 month ago
Chemistry,
9 months ago
Biology,
9 months ago