c++代码
#include<iostream>
using namespace std;
string c;
int g,p,l,t;
int main()
{
cin>>c;
for(int i=0;i<c.size();i++)
{
if(c[i]=='G'||c[i]=='g')g++;
if(c[i]=='P'||c[i]=='p')p++;
if(c[i]=='L'||c[i]=='l')l++;
if(c[i]=='T'||c[i]=='t')t++;
}
while(g||l||p||t)
{
if(g)g--,cout<<"G";
if(p)p--,cout<<"P";
if(l)l--,cout<<"L";
if(t)t--,cout<<"T";
}
cout<<endl;
return 0;
}