mirror of
https://gitlab.com/mfocko/Codeforces.git
synced 2024-11-09 13:49:06 +01:00
Matej Focko
a92e9dac08
* add makefile * add c++ skeleton Signed-off-by: Matej Focko <mfocko@redhat.com>
14 lines
121 B
C++
14 lines
121 B
C++
#include <iostream>
|
|
|
|
namespace {
|
|
|
|
void solve() {
|
|
// TODO
|
|
}
|
|
|
|
} // namespace
|
|
|
|
int main(void) {
|
|
solve();
|
|
return 0;
|
|
}
|