mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
15 lines
231 B
Python
15 lines
231 B
Python
def problem_p03206(input_data):
|
|
# encoding:utf-8
|
|
|
|
import copy
|
|
import random
|
|
|
|
import numpy as np
|
|
|
|
d = int(eval(input_data))
|
|
|
|
christmas = "Christmas"
|
|
|
|
plus = " Eve"
|
|
|
|
return christmas + plus * (25 - d)
|