A plus B Simple
Submit solution
Python3
Points:
1
Time limit:
1.0s
Memory limit:
64M
Author:
Problem type
Allowed languages
In this problem you will be required to calculate the sum of two numbers.
Input Specification
The first line will an integer \(A\) (\(1 \le A \le 100\,000\)). The second line will another integer \(B\) (\(1 \le B \le 100\,000\)).
Output Specification
Output 1 line, containing one integer, which is the sum of \(A\) and \(B\).
Sample Input 1
1
1
Sample Output 1
2
Comments