Unicode points


Submit solution

Points: 10
Time limit: 5.0s
Memory limit: 256M

Author:
Problem type
Allowed languages
C#, Go, Java

Unicode és una codificació de caracters textuals que pot respresentar caracters de molts idiomes. Cada caracter es representat per un Unicode code point. Un code point és un número enter que identifíca de forma única un caracter.

Donats 6 code points, imprimeix el text codificat.

Input Format

6 números enters

Constraints

-

Output Format

text

Test Case 1

Input
97 98 99 100 101 102
Output
abcdef

Test Case 2

Input
119 97 32 121 101 97
Output
wa yea

Test Case 3

Input
65 90 97 122 48 57
Output
AZaz09

Authorship: Gerard Falcó

CC BY-NC-SA 4.0