Adding together

Report a typo

Write a program that takes two integer numbers a and b and prints their sum.

The variables have already been defined.

Sample Input 1:

8
11

Sample Output 1:

19
Write a program in Python 3
a = int(input())
b = int(input())

# calculate the sum below
___

Create a free account to access the full topic