.back()是返回字符串的最后一位,.pop_back()是去掉字符串的最后一位
#include<iostream>
using namespace std;
int main()
{
string str,res;
while(cin>>str)
{
if(str.back()=='.') str.pop_back();
if(str.size()>res.size()) res=str;
}
cout<<res<<endl;
return 0;
}