#abc063a. [abc063_a]Restricted

[abc063_a]Restricted

Problem Statement

You are given two integers AA and BB as the input. Output the value of A+BA + B.

However, if A+BA + B is 1010 or greater, output error instead.

Constraints

  • AA and BB are integers.
  • 1A,B91 ≤ A, B ≤ 9

Input

Input is given from Standard Input in the following format:

AA BB

Output

If A+BA + B is 1010 or greater, print the string error (case-sensitive); otherwise, print the value of A+BA + B.


Sample Input 1

6 3

Sample Output 1

9

Sample Input 2

6 4

Sample Output 2

error