#include <iostream>
using namespace std;
int main()
{
string s,t;
int v;
while(cin >>t)
{
if(t.find('.')!=-1) t.erase(t.find('.'));
if(t.size() >v)
{
v=t.size();
s=t;
}
}
cout<<s;
}