yry
2025-09-01 66d52436ff5f3f3825b43a3608ff96e69287ea71
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;
    }
    
    
}