Computer Science, asked by nehamalviya21798, 2 months ago

Write a program that takes two integers as input (one per line) and prints their sum as output.

Answers

Answered by Annonymous01
0

Answer:

here is the solution program (python)

a = int(input("enter first number"))

b = int(input("enter second number"))

print("the sum of the two numbers is", a+b)

Similar questions