#include using namespace std; // x@y@y@y // 1. x@y == x // 2. x@y == y // 2.1. y@y == x // 2.2. y@y == y void Solve() { int x, y; cin >> x >> y; cout << "4\n"; cout << x << ' ' << y << ' ' << y << ' ' << y << '\n'; int t; cin >> t; cout << t << '\n'; } int main() { ios::sync_with_stdio(false); // cin.tie(nullptr); Solve(); }