#include<bits/stdc++.h>
using namespace std;
string s;
int maxx=0;
string s1;
int main(){
while(cin>>s){
int l=s.size();
if(s[l-1]=='.') l--;
if(l>maxx){
maxx=l;
s1=s;
}
}for(int i=0;i<s1.size();i++){
if(s1[i]!='.') cout<<s1[i];
}
return 0;
}