100 atcoder#ABC119A. [ABC119A] Still TBD
[ABC119A] Still TBD
Score : points
Problem Statement
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.
Constraints
- is a string that represents a valid date in the year in the
yyyy/mm/dd
format.
Input
Input is given from Standard Input in the following format:
Output
Print Heisei
if the date represented by is not later than April , , and print TBD
otherwise.
2019/04/30
Heisei
2019/11/01
TBD