#include<stdio.h>
#include<string.h>
#include<ctype.h>
int main()
{
    char s[50];
    char p;
    scanf("%s", s);
    if(s[50] == 'a' || s[50] == 'e' || s[50] == 'i' || s[50] == 'o' || s[50] == 'u'){
   p= toupper(s[50]);
    printf("%c",p);
    }
    printf("%s",p);
    return 0;
}