// No Output #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int p; cin >> p; (void)p; while (true) { this_thread::sleep_for(chrono::seconds(1)); } }