#include <iostream>
#include<string>
using namespace std;

int main() {
    string s;
    string str;
    int count = 0, m = 0;
    getline(cin, s);
    s.append(" ");
    for (auto i : s) {
        if (i == ' ') {
            m++;
        }
    }
    while (m > 0) {
        string temp = s.substr(0, s.find(' '));
        str+=temp[0];
        count = s.find(' ');
        s = s.substr(count + 1);
        m--;
    }
    cout << str;
    return 0;
}