#abc164a. [abc164_a]Sheep and Wolves
[abc164_a]Sheep and Wolves
Problem Statement
There are sheep and 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
Input
Input is given from Standard Input in the following format:
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