AT_abc471_a [ABC471A] Nine or Nein

Description

You are given positive integers $ A $ and $ B $ . If at least one of the following values is equal to $ 9 $ , output `Nine`; otherwise, output `Nein`. - $ A + B $ - $ A - B $ - $ A \times B $ - $ A \div B $

Input Format

The input is given from Standard Input in the following format: > $ A $ $ B $

Output Format

Output the answer.

Explanation/Hint

### Sample Explanation 1 Since $ 16 - 7 = 9 $ , output `Nine`. ### Sample Explanation 2 None of the following values is equal to $ 9 $ , so output `Nein`. - $ 66 + 7 = 73 $ - $ 66 - 7 = 59 $ - $ 66 \times 7 = 462 $ - $ 66 \div 7 = \frac{66}{7} $ ### Constraints - $ 1 \leq A \leq 100 $ - $ 1 \leq B \leq 100 $ - All input values are integers.