#include <bits/stdc++.h>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
cout << "\n";
}
#include <bits/stdc++.h>
: 알고리즘 문제 풀이용으로 좋은 헤더ios_base::sync_with_stdio(false)
: 시간 줄이기cin.tie(NULL)
: 시간 줄이기\n
: endl 대신 사용하면 시간 줄이기 유리