codeforces rounds

This commit is contained in:
Barrett Ruth 2025-09-17 22:22:41 -04:00
parent 6746faf742
commit 4ec6d74e65
88 changed files with 2039 additions and 13 deletions

20
codeforces/1049/2140a.cc Normal file
View file

@ -0,0 +1,20 @@
#include <bits/stdc++.h>
using namespace std;
void solve() {
std::cout << "ho\n";
}
int main() {
std::cin.tie(nullptr)->sync_with_stdio(false);
int tc = 1;
std::cin >> tc;
for (int t = 0; t < tc; ++t) {
solve();
}
return 0;
}