A - Restricted Editorial /

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 100

問題文

二つの整数 A, B が入力されます。A + B の値を出力してください。

ただし、A + B10 以上の場合は、代わりに error と出力してください。

制約

  • A, B は整数である。
  • 1 ≤ A, B ≤ 9

入力

入力は以下の形式で標準入力から与えられる。

A B

出力

A + B10 以上の場合は、文字列 error を英小文字で出力せよ。そうでない場合は、A + B の値を出力せよ。


入力例 1

6 3

出力例 1

9

入力例 2

6 4

出力例 2

error

Score : 100 points

Problem Statement

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

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

Constraints

  • A and B are integers.
  • 1 ≤ A, B ≤ 9

Input

Input is given from Standard Input in the following format:

A B

Output

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


Sample Input 1

6 3

Sample Output 1

9

Sample Input 2

6 4

Sample Output 2

error