mirror of
https://gitlab.com/mfocko/Codeforces.git
synced 2024-11-09 21:59:06 +01:00
15 lines
121 B
C++
15 lines
121 B
C++
|
#include <iostream>
|
||
|
|
||
|
namespace {
|
||
|
|
||
|
void solve() {
|
||
|
// TODO
|
||
|
}
|
||
|
|
||
|
} // namespace
|
||
|
|
||
|
int main(void) {
|
||
|
solve();
|
||
|
return 0;
|
||
|
}
|