Sum of Two Integers


Submit solution

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

Problem types

Given two integers \(a\) and \(b\), print their sum.

Input

One line containing two integers \(a\) and \(b\).

Constraints

\(-10^9 \le a, b \le 10^9\)

Output

Print \(a + b\).

Example

Input

2 3

Output

5


Comments


  • 0
    admin  commented on July 16, 2026, 3:46 a.m.

    hello