#include <iostream> using n
#include <iostream>
using namespace std;
int main(){
int n, m;
cin >> n >> m;
int x = 1;
int y = 1;
int dx = 1;
int dy = 1;
int cnt = 0;
while (cnt != 2){
cnt = 0;
x = x + dx;
y = y + dy;
if (x == 1 || x == n){
++cnt;
dx = -dx;
}
if (y == 1 || y == m){
++cnt;
dy = -dy;
}
}
cout << x << " " << y << endl;
return 0;
}输入 1:
4 3
输出 1:____
输入 2:
2017 1014
输出 2:____
输入 3:
987 321
输出 3:____
答案
第1空:1 3
第2空:2017 1
第3空:1 321