#ABC164A. Sheep and Wolves

Sheep and Wolves

题目描述

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.

SS 只羊和 WW 只狼。

如果狼的数量大于或等于羊的数量,狼就会攻击羊。

如果狼会攻击羊,则打印 "不安全";否则打印 "安全"。

输入格式

输入内容按以下格式标准输入:

SS WW

输出格式

如果狼会攻击羊,则打印 "不安全";否则,打印 "安全"。

样例 #1

样例输入 #1

4 5

样例输出 #1

unsafe

样例 #2

样例输入 #2

100 2

样例输出 #2

safe

样例 #3

样例输入 #3

10 10

样例输出 #3

unsafe

说明

数据规模与约定

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

样例 11 解释

有四只羊和五只狼。狼的数量不少于羊的数量,所以它们会攻击羊。

样例 22 解释

一只羊赶走两只狼