B - Hall of Fame Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

問題文

競技プログラミングのコンテストを主催するサイトの 1 つである AtCoder では、Rating最高値が 2800 以上になると「殿堂入り」します。
高橋くんの AtCoder の現在の Rating は C 、Rating最高値は H です。
高橋くんが「殿堂入り」しているなら o 、していないなら x と出力してください。

制約

  • C,H は整数
  • 0 \le C \le H \le 4400

入力

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

C H

出力

問題文の指示に従って出力せよ。


入力例 1

3085 3085

出力例 1

o

高橋くんの現在の Rating は 3085 、Rating最高値も 3085 です。
よって、高橋くんは殿堂入りしています。


入力例 2

2580 2631

出力例 2

x

入力例 3

0 2800

出力例 3

o

たとえ現在の Rating が 2800 未満でも、 Rating最高値が 2800 以上であれば高橋くんは殿堂入りしています。

Problem Statement

In AtCoder, the programming contest hosting website, those whose maximum rating is 2800 or greater is in the "hall of fame".
Takahashi's current rating is C and the maximum rating is H.
Print o if he is in the "hall of fame", and x otherwise.

Constraints

  • C and H are integers.
  • 0 \le C \le H \le 4400

Input

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

C H

Output

Print the answer as instructed in the problem statement.


Sample Input 1

3085 3085

Sample Output 1

o

Takahashi's current rating is 3085, and his maximum rating is 3085 too.
Thus, Takahashi is in the hall of fame.


Sample Input 2

2580 2631

Sample Output 2

x

Sample Input 3

0 2800

Sample Output 3

o

Even if his current rating is less than 2800, he is still in the hall of fame as long as his maximum rating is 2800 or greater.