#include <iostream>
#include <conio.h>
using namespace std;

int main()
{

    int tp=0,ftp;

    while(tp!=27) {
        tp=getch();
        if (tp==224) cout << tp << ", ";
        else cout << tp << endl;
    }

    //cout << "Hello world!" << endl;
    return 0;
}

