wggga
2025-09-01 de533a2881467b885654f9a6f07e069d0df2d730
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;
    }
    
    
}