communication.cpp:2:6: error: 'pair' in namespace 'std' does not name a template type
2 | std::pair<int,int> receive();
| ^~~~
communication.cpp:1:1: note: 'std::pair' is defined in header '<utility>'; did you forget to '#include <utility>'?
+++ |+#include <utility>
1 | int send(int s);
communication.cpp:11:6: error: 'pair' in namespace 'std' does not name a template type
11 | std::pair<int,int> decode(int N) {
| ^~~~
communication.cpp:11:1: note: 'std::pair' is defined in header '<utility>'; did you forget to '#include <utility>'?
11 | std::pair<int,int> decode(int N) {
| ^~~