#include <iostream>
using namespace std;
int main() {
string res;
string str;
while (cin >> str) {
if (str[str.size() - 1] == '.') str = str.substr(0, str.size()-1);
if (str.size() > res.size())
res = str;
}
cout << res << endl;
return 0;
}