Problem Letters
https://codeforces.com/group/cRJbcAFEwS/contest/485694/problem/A
Question
Abby and Cody want to make a new website called Abakoda, where beginner programmers can join friendly programming contests and improve their skills.
Now they are working on displaying the contest rankings. They need to show the problem letters on the top of each column of the rankings table. In Abakoda, the first four letters of the alphabet are A, B, , and D. Therefore, these will be the problem letters shown on the columns, from left to right.
Aba
100
0
100
0
Abby
100
100
100
100
Koda
100
0
0
0
Cody
100
100
100
0
Abby and Cody need your help. Write a program that takes an integer between to and prints out the letter that should be shown on top of the -th column from the left in the rankings table.
Input Format
The input contains only one line. This line contains one integer n.
Constraints
Output Format
Your program must output a capital English letter, which is the letter that should be shown on top of the th column.
Sample Inputs:
Last updated