package org.example;

import java.util.Scanner;

// Press Shift twice to open the Search Everywhere dialog and type `show whitespaces`,
// then press Enter. You can now see whitespace characters in your code.
public class TransferController {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        String result = scan.nextLine();

        String results[] = result.split("\\|");

        for (String res: results) {
            int number = Integer.parseInt(res);
            char character = (char) number;
            System.out.print(character);
        }
    }
}