#! /usr/bin/python3
# -*- coding: utf-8 -*-

voyelles="aeiouy"

for element in voyelles:
    print(ord(element)," ", end=' ')
print("\n")