Programming contests

Magas szintű programozási nyelvek 1, gyakorló feladatsor, 2015. április 24.

April 24, 2015 10:00 AM – April 24, 2015 10:00 AM

Find the Telephone

In some places, it is common to remember a phone number associating its digits to letters. In this way, the expression MY LOVE means 69 5683. Of course, there are some problems because some phone numbers can not form a word or a phrase, and the digits 1 and 0 are not associated to any letter.

Your task is to read an expression and find the corresponding phone number based on the table below. An expression is composed of the capital letters (AZ), hyphens (-), and the numbers 1 and 0.

Letters Number
ABC 2
DEF 3
GHI 4
JKL 5
MNO 6
PQRS 7
TUV 8
WXYZ 9

Input Specification

The input consists of a set of expressions. Each expression is in a line by itself and has C characters, where 1 ≤ C ≤ 30. The input is terminated by end of file (EOF).

Output Specification

For each expression, you should print the corresponding phone number.

Sample Input

  1. 1-HOME-SWEET-HOME
  2. MY-MISERABLE-JOB
download as text file

Output for Sample Input

  1. 1-4663-79338-4663
  2. 69-647372253-562
download as text file
University of Debrecen; Faculty of Informatics; v. 03/01/2019