#include
int operator+(const Counter &c1, const int b) {
int x = c1.getx();
x += b;
return x;
}
int operator+(const int b, const Counter &c1) {
int x = c1.getx();
x += b;
return x;
}

#include
int operator+(const Counter &c1, const int b) {
int x = c1.getx();
x += b;
return x;
}
int operator+(const int b, const Counter &c1) {
int x = c1.getx();
x += b;
return x;
}