#ABC119A. Still TBD

Still TBD

题目描述

You are given a string SS as input. This represents a valid date in the year 20192019 in the yyyy/mm/dd format. (For example, April 3030, 20192019 is represented as 2019/04/30.)

Write a program that prints Heisei if the date represented by SS is not later than April 3030, 20192019, and prints TBD otherwise.

输入字符串 SS 。这表示 20192019 年的一个有效日期,格式为 yyyy/mm/dd 。(例如,4 月 3030 , 20192019 表示为 2019/04/30)。

请编写一个程序,如果 SS 所代表的日期不晚于四月 303020192019 ,则打印 "Heisei",否则打印 "TBD"。

输入格式

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

SS

输出格式

如果 SS 所代表的日期不晚于 3030 , 20192019 四月,则打印 Heisei ,否则打印 TBD

样例 #1

样例输入 #1

2019/04/30

样例输出 #1

Heisei

样例 #2

样例输入 #2

2019/11/01

样例输出 #2

TBD

说明

数据规模与约定

  • SS 是一个字符串,表示 20192019 年中的一个有效日期,格式为 yyyy/mm/dd