0841 - 聖女と魔法使い

時間制限 1 秒 / メモリ制限 64 MB / 得点 1 / Writer ei1620 / x 22 / 統計 /


TLE
1sec
MLE
64MB
得点
1

問題

ある日、ジャンヌは気付いた。マーリンの生態に。
マーリンは青セイバーに会いたくなると王の話をしようとするのだ。そこでジャンヌはマーリンが王の話をしようとしたら、青セイバーを呼ぶことにした。

入力

s
:      
:      
:     
The end of the day

文字列 s が与えられ、入力の最後は、"The end of the day" と入力される。また、文字列には空白が入力されることもある。

出力

"Let's talk about the King" と入力されたら "Come on Saber!" と出力し、それ以外が入力されたときは "He is normal" と出力せよ。
ただし、"The end of the day" に対しては "He is normal" と出力しなくて良い。
出力の最後に改行を忘れずに。

制約

全ての入出力ケースについて以下を満たす。

  • 1 ≦ 文字列 s の長さ ≦ 256
  • 入力される文字列の数は 100 個を超えない。

入出力例

入力例1

Hello
How are you?
I'm fine
Let's talk about the King
See you
The end of the day

出力例1

He is normal
He is normal
He is normal
Come on Saber!
He is normal

入力例2

Hello
How are you?
I'm fine
Let's talk about the King
Oh sorry
Let's talk about the King
See you
Let's talk about the King
The end of the day

出力例2

He is normal
He is normal
He is normal
Come on Saber!
He is normal
Come on Saber!
He is normal
Come on Saber!