[백준/C++] 4999 - 아!

orangesnail·2025년 5월 11일

백준

목록 보기
106/169

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;
}
profile
초보입니다. 피드백 환영합니다 😗

0개의 댓글