Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb. Question by Ibrahim Mesecan.
Convert from Hex to Dec
Question:
Read a 3-digit hexadecimal number,
print the decimal equivalent.
Input specification:
You will be given 3 space separated hexadecimal
digits (0..9 and A..F).
Output specification:
Show one number.
Sample Input I
3 A 0
|
Sample Input II
0 C D
|
Sample Output I
928
|
Sample Output II
205
|
Explanation:
for the first sample: 3 * 256 + 10 * 16 + 0 = 928 .
Для отправки решений необходимо выполнить вход.
|