Just Addition

View as PDF

Submit solution


Points: 100
Time limit: 1.0s
Memory limit: 256M

Authors:
Problem type

Problem Statement

Jackson is doing his maths homework in addition and he needs your help!

Jackson's maths homework contains a lot of addition questions. Given two integers a and b, can you help Jackson calculate the sum of a + b?

Input

Your first and only line will contain two space-separated integers a and b.

Output

A single line, containing the value of a + b

Constraints

For all test cases...

  • 0 \le a, b \le 10^9

Example 1

Input
10 15
Output
25

Example 2

Input
100 100
Output
200

Example 3

Input
2004 0
Output
2004

Python Template

a, b = map(int, input().split())
# Continue your code here and print your final answer!

Solution

If you'd like to view a sample solution to this tutorial question, please click the "Read Editorial" link to the right of the problem!


Comments

There are no comments at the moment.