A - Sheep and Wolves Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100

問題文

羊が S 匹、狼が W 匹います。

狼の数が羊の数以上のとき、羊は狼に襲われてしまいます。

羊が狼に襲われるなら unsafe、襲われないなら safe を出力してください。

制約

  • 1 \leq S \leq 100
  • 1 \leq W \leq 100

入力

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

S W

出力

羊が狼に襲われるなら unsafe、襲われないなら safe を出力せよ。


入力例 1

4 5

出力例 1

unsafe

羊が 4 匹、狼が 5 匹います。狼の数が羊の数以上なので、羊は狼に襲われてしまいます。


入力例 2

100 2

出力例 2

safe

多勢に無勢です。


入力例 3

10 10

出力例 3

unsafe

Score : 100 points

Problem Statement

There are S sheep and W wolves.

If the number of wolves is greater than or equal to that of sheep, the wolves will attack the sheep.

If the wolves will attack the sheep, print unsafe; otherwise, print safe.

Constraints

  • 1 \leq S \leq 100
  • 1 \leq W \leq 100

Input

Input is given from Standard Input in the following format:

S W

Output

If the wolves will attack the sheep, print unsafe; otherwise, print safe.


Sample Input 1

4 5

Sample Output 1

unsafe

There are four sheep and five wolves. The number of wolves is not less than that of sheep, so they will attack them.


Sample Input 2

100 2

Sample Output 2

safe

Many a sheep drive away two wolves.


Sample Input 3

10 10

Sample Output 3

unsafe