#include <iostream>
#include <map>
 
using namespace std;
 
int main() {
    wchar_t str[] = L"おえいうあ";
    map<wchar_t, int> charactor_to_handle = {
        { L'あ', 0 },
        { L'い', 1 },
        { L'う', 2 },
        { L'え', 3 },
        { L'お', 4 },
    };
    int n[256] = { 100, 200, 300, 400, 500 };
    
    for(int i = 0; i < wcslen(str); ++i) {
        wcout << n[charactor_to_handle[str[i]]] << endl;
    }
 
    cin.get();
    return 0;
}