Computer Science, asked by sankrishkam, 8 months ago

Q1. Write a program to add two numbers in Script mode using print() function​

Answers

Answered by legend1321
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 aindresh255
1

Answer:

please make me brainlist

Similar questions