#include <iostream>
#include <message.h>
#include <kollib.h>
using namespace std;
int main() {
if (MyNodeId() == 0) {
cout << 5 << endl << 4 << endl << 0 << endl << 4;
}
}
1 2 3 4 5 6 7 8 9 10 | #include <iostream> #include <message.h> #include <kollib.h> using namespace std; int main() { if (MyNodeId() == 0) { cout << 5 << endl << 4 << endl << 0 << endl << 4; } } |
English