#include int readNumber() { int a = 0; std::cin >> a; return a; } void writeAnswer(int a) { std::cout << a << std::endl; }