[UVa #1124] Celebrity jeopardy

tolelom·2022년 7월 3일
0

UVa

목록 보기
3/20

문제 설명

문제 링크
수식이 동등함이 어쩌고... 는 페이크고 입력 받은 대로 출력하면 되는 문제

알고리즘

EOF까지 입력 받고 그대로 출력

코드

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define INF 1000000000


int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    string s;
    bool flag = true;
    while (getline(cin, s)) {
        cout << s << '\n';
    }
}

느낀 점

다음 문제 풀러 가야지

profile
이것 저것 작성하는 기술 블로그

0개의 댓글