#ABC471A. 九还是不九 / Nine or Nein

九还是不九 / Nine or Nein

Problem Statement

You are given positive integers AA and BB.

If at least one of the following values is equal to 99, output Nine; otherwise, output Nein.

  • A+BA + B
  • ABA - B
  • A×BA \times B
  • A÷BA \div B

Constraints

  • 1A1001 \leq A \leq 100
  • 1B1001 \leq B \leq 100
  • All input values are integers.

Input

The input is given from Standard Input in the following format:

  • AA BB

Output

Output the answer.

16 7
Nine

Since 167=916 - 7 = 9, output Nine.

66 7
Nein

None of the following values is equal to 99, so output Nein.

  • 66+7=7366 + 7 = 73
  • 667=5966 - 7 = 59
  • 66×7=46266 \times 7 = 462
  • 66÷7=66766 \div 7 = \frac{66}{7}
9 1
Nine
9 9
Nein