🖥

[C++]빠른 입출력

망록 2023. 8. 24.

 

 

#include <iostream>
using namespace std;

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

 

댓글