Problems
351 - Alphabets II
SUBMIT PROBLEM

Alphabets II

Time Limit: 1 sec

 

The Problem

Sam decided to write her computer password as a code. The password is a combination of 5 alphabets and it is hidden in form of numbers.

Can you decode the password??

 

The Input

The Input will contain a series of line. Each line contains 5 integer numbers in between 1 to 5 which will represent alphabets A to E. Input is terminated by end of file (EOF).

 

The Output

For each line of input the output will print the word in a separate line.

 

Sample Input

1 2 3 4 5

5 4 3 2 1

 

Sample Output

A B C D E

E D C B A

 

 

 

 

Problem Setter: Samia Safa Ahmed