class Main {
    public static void main(String[] args) {
        long[] c = {130636800L, -5080148640L, 13802573088L, -14974335980L, 8683908340L,
                   -3006955245L, 651448014L, -89047770L, 7457160L, -349165L, 6998L};

        for (int x = 0; x < 11; x++) {
            long s = 0;
            for (int i = 0; i < 11; i++)
                s += c[i] * Math.pow(x, i);

            System.out.print((char)(s / 1814400));
        }
    }
}