#include <bits/stdc++.h>
#include <sal.h>
using namespace std;
class Sky {                                                     //天上
public:
    _Success_(return == false) bool Sea(_In_opt_ int* Run) {    //不复回
        int sea = *Run;
        return false;
    }
private:
    string Water = "the Yellow River";                          //黄河之水
};
int main(int* argc, char* argv[]) {
    Sky esquire;                                                //君
    //cout << esquire.Water;                                    //不见
    int Yellow_River;
    if (!esquire.Sea(&Yellow_River))                            //奔流到海
        cout << "奔流到海不复回";
    return 0;
}
//君不见黄河之水天上来,奔流到海不复回。




















