100 atcoder#ABC126B. [ABC126B] YYMM or MMYY
[ABC126B] YYMM or MMYY
Score : points
Problem Statement
You have a digit sequence of length . You are wondering which of the following formats is in:
- YYMM format: the last two digits of the year and the two-digit representation of the month (example:
01
for January), concatenated in this order - MMYY format: the two-digit representation of the month and the last two digits of the year, concatenated in this order
If is valid in only YYMM format, print YYMM
; if is valid in only MMYY format, print MMYY
; if is valid in both formats, print AMBIGUOUS
; if is valid in neither format, print NA
.
Constraints
- is a digit sequence of length .
Input
Input is given from Standard Input in the following format:
Output
Print the specified string: YYMM
, MMYY
, AMBIGUOUS
or NA
.
1905
YYMM
May is a valid date, but is not valid as a month. Thus, this string is only valid in YYMM format.
0112
AMBIGUOUS
Both December and January are valid dates. Thus, this string is valid in both formats.
1700
NA
Neither nor is valid as a month. Thus, this string is valid in neither format.