codeforces rounds
This commit is contained in:
parent
6746faf742
commit
4ec6d74e65
88 changed files with 2039 additions and 13 deletions
20
codeforces/1049/2140a.cc
Normal file
20
codeforces/1049/2140a.cc
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue