Problems
375 - Print Numbers
SUBMIT PROBLEM

Print Numbers

Time Limit: 1 sec

 

The Problem

English is a very influential language. It has 26 alphabets. 26 are small and 26 are capital alphabets. We can easily represent alphabets through numbers.

 

Example:

1 represent  “+1+A”

-1 represent  “-1-a”

2 represent  “+2+B”

-2 represent “-2-b” and so on.

Just for inconvenience if the number divisible by 3

Like, 3 represent as “(+3+C)”

-3 represent as “(-3-c)”

If the number is out of range(-26 to +26) or zero print “Error!!”

 

The Input

There are several test cases. Each case contains an integer number N,(-100<=N<=100). Input is terminated by EOF.

 

The Output

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

 

Sample Input

26

-3

0

32

 

Sample Output

+26+Z

(-3-c)

Error!!

Error!!

 

 

 

 

Problem Setter: Samia Safa Ahmed