#D1559. Addition of Big Integers

    ID: 1303 Type: Default 1000ms 268MiB

Addition of Big Integers

Addition of Big Integers

Addition of Big Integers

Given two integers AA and BB, compute the sum, A+BA + B.

Input

Two integers AA and BB separated by a space character are given in a line.

Output

Print the sum in a line.

Constraints

  • 1×10100000A,B10100000-1 \times 10^{100000} \leq A, B \leq 10^{100000}

Sample Input 1

5 8

Sample Output 1

13

Sample Input 2

100 25

Sample Output 2

125

Sample Input 3

-1 1

Sample Output 3

0

Sample Input 4

12 -3

Sample Output 4

9

Example

Input

5 8

Output

13

inputFormat

Input

Two integers AA and BB separated by a space character are given in a line.

outputFormat

Output

Print the sum in a line.

Constraints

  • 1×10100000A,B10100000-1 \times 10^{100000} \leq A, B \leq 10^{100000}

Sample Input 1

5 8

Sample Output 1

13

Sample Input 2

100 25

Sample Output 2

125

Sample Input 3

-1 1

Sample Output 3

0

Sample Input 4

12 -3

Sample Output 4

9

Example

Input

5 8

Output

13

样例

5 8
13