Simple Addition

Problem:
Find the sum of two integers num1 and num2.


Python solution:

1
2
3
num1 = int(input())
num2 = int(input())
print(num1+num2)

Comments

Popular posts from this blog

Largest palindrome product

Largest prime factor

Even Fibonacci numbers