A - Christmas Eve Eve Eve
Editorial
/


Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 100 点
問題文
とある世界では、今日は 12 月 D 日です。
D = 25 なら Christmas
, D = 24 なら Christmas Eve
, D = 23 なら Christmas Eve Eve
, D = 22 なら Christmas Eve Eve Eve
と出力するプログラムを作ってください。
制約
- 22 \leq D \leq 25
- D は整数である。
入力
入力は以下の形式で標準入力から与えられる。
D
出力
指定された文字列を出力せよ (大文字と小文字は区別される)。
入力例 1
25
出力例 1
Christmas
入力例 2
22
出力例 2
Christmas Eve Eve Eve
単語と単語の間のスペースも出力してください。
Score : 100 points
Problem Statement
In some other world, today is December D-th.
Write a program that prints Christmas
if D = 25, Christmas Eve
if D = 24, Christmas Eve Eve
if D = 23 and Christmas Eve Eve Eve
if D = 22.
Constraints
- 22 \leq D \leq 25
- D is an integer.
Input
Input is given from Standard Input in the following format:
D
Output
Print the specified string (case-sensitive).
Sample Input 1
25
Sample Output 1
Christmas
Sample Input 2
22
Sample Output 2
Christmas Eve Eve Eve
Be sure to print spaces between the words.