C++ 입출력 빠르게 하기

suee97·2022년 2월 28일
0
#include <iostream>

using namespace std;

int main() {
	// 아래 두 줄
    ios::sync_with_stdio(0);
    cin.tie(0);


    return 0;
}
profile
승언

0개의 댓글