题目描述
和771有一丢丢像
样例
#include<bits/stdc++.h>
using namespace std;
string st,str;
int c,mx,s;
int main()
{
while(cin>>st){
c=st.size();
if(st[c-1]=='.'){
c--;
st.erase(c,1);
s=1;
}
if(c>mx){
str=st;
mx=c;
}
if(s)break;
}
cout<<str;
}