cp/codeforces/1062/2167a.cc
2025-11-03 14:24:01 -05:00

26 lines
466 B
C++

#include <iostream>
#include <cstdint>
using u32 = uint32_t;
using namespace std;
void solve() {
cout << 1;
}
int main() { // {{{
std::cin.exceptions(std::cin.failbit);
#ifdef LOCAL
std::cerr.rdbuf(std::cout.rdbuf());
std::cout.setf(std::ios::unitbuf);
std::cerr.setf(std::ios::unitbuf);
#else
std::cin.tie(nullptr)->sync_with_stdio(false);
#endif
u32 tc = 1;
std::cin >> tc;
for (u32 t = 0; t < tc; ++t) {
solve();
}
return 0;
}
// }}}