s = input()
if not s.isalpha():
    print("Invalid input")
else:
    print(''.join(c.upper() if c in 'aeiouAEIOU' else c for c in s))