jc
2025-09-01 833c0e115780d398db09e53211dee8329d809fd6
1
2
3
4
5
6
7
8
9
10
11
12
#include <iostream>
 
int main() {
    std::cout << "hello world" << std::endl;
    int input;
    std::cin >> input;
    if (input == 88) {
        return 0;
    }
    
    
}