https://www.acmicpc.net/problem/4999
#include <iostream>
using namespace std;
int main() {
string input, answer;
cin >> input >> answer;
if (input.length() >= answer.length())
cout << "go" << endl;
else cout << "no" << endl;
return 0;
}