6 lines
97 B
C++
6 lines
97 B
C++
|
#include <bits/stdc++.h>
|
||
|
|
||
|
int main(){
|
||
|
std::cin.sync_with_stdio(false);
|
||
|
std::cin.tie(0);
|
||
|
}
|