100 atcoder#ABC126B. [ABC126B] YYMM or MMYY

[ABC126B] YYMM or MMYY

Score : 200200 points

Problem Statement

You have a digit sequence SS of length 44. You are wondering which of the following formats SS 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 SS is valid in only YYMM format, print YYMM; if SS is valid in only MMYY format, print MMYY; if SS is valid in both formats, print AMBIGUOUS; if SS is valid in neither format, print NA.

Constraints

  • SS is a digit sequence of length 44.

Input

Input is given from Standard Input in the following format:

SS

Output

Print the specified string: YYMM, MMYY, AMBIGUOUS or NA.

1905
YYMM

May XX19XX19 is a valid date, but 1919 is not valid as a month. Thus, this string is only valid in YYMM format.

0112
AMBIGUOUS

Both December XX01XX01 and January XX12XX12 are valid dates. Thus, this string is valid in both formats.

1700
NA

Neither 00 nor 1717 is valid as a month. Thus, this string is valid in neither format.