100 #ABC164A. [ABC164A] Sheep and Wolves

[ABC164A] Sheep and Wolves

Score : 100100 points

Problem Statement

There are SS sheep and WW 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

  • 1S1001 \leq S \leq 100
  • 1W1001 \leq W \leq 100

Input

Input is given from Standard Input in the following format:

SS WW

Output

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

4 5
unsafe

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

100 2
safe

Many a sheep drive away two wolves.

10 10
unsafe