#include "read.h" using namespace std; string read() { string s; for (char ch = getchar(); ch != EOF; ch = getchar()) { s += ch; } return s; }