全部评论 2

  • #include<bits/stdc++.h>
    using namespace std;
    int main(){
        cout<<1;	
    	return 0;
    }
    

    2024-07-22 来自 上海

    0
  • #include<bits/stdc++.h>
    using namespace std;
    int main() {
    int n, m, x, y;
    cin>>n>>m>>x>>y;
    if(y+1<=m){
    cout << x << " " << y + 1 << endl;
    } else {
    cout << "NA" << endl;
    }
    if (x + 1 <= n) {

    2023-07-26 来自 河北

    0
首页