100 atcoder#ABC063A. [ABC063A] Restricted

[ABC063A] Restricted

Score : 100100 points

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 \leq A, B \leq 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.

6 3
9
6 4
error