Q1. Write a program to add two numbers in Script mode using print() function
Answers
Answered by
3
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)
Explanation:
Answered by
1
Answer:
please make me brainlist
Similar questions