#ABC119A. Still TBD
Still TBD
题目描述
You are given a string as input. This represents a valid date in the year in the yyyy/mm/dd
format. (For example, April , is represented as 2019/04/30
.)
Write a program that prints Heisei
if the date represented by is not later than April , , and prints TBD
otherwise.
输入字符串 。这表示 年的一个有效日期,格式为
yyyy/mm/dd
。(例如,4 月 , 表示为2019/04/30
)。请编写一个程序,如果 所代表的日期不晚于四月 , ,则打印 "Heisei",否则打印 "TBD"。
输入格式
输入内容按以下格式标准输入:
输出格式
如果 所代表的日期不晚于 , 四月,则打印 Heisei
,否则打印 TBD
。
样例 #1
样例输入 #1
2019/04/30
样例输出 #1
Heisei
样例 #2
样例输入 #2
2019/11/01
样例输出 #2
TBD
说明
数据规模与约定
- 是一个字符串,表示 年中的一个有效日期,格式为
yyyy/mm/dd
。