MLE '19 Contest 4 P2 - Troll

View as PDF

Submit solution

Points: 3
Time limit: 2.0s
Memory limit: 128M

Author:
Problem type

Given two integers a and b, print |a| + |b|. |X| denotes the absolute value of X.

Input Specification

The first line will contain two integers, a, b (|a|, |b| \le 10^9).

Output Specification

Output |a| + |b|.

Sample Input

-3 0

Sample Output

3

Comments

There are no comments at the moment.