阅读程序写结果。
#include<iostream>
using namespace std;
int main() {
int x,y;
cin >>x>>y;
if(x>y&&y!=0) {
cout << x/y <<endl;
} else if (x!=0) {
cout << y/x <<endl;
}
return 0;
输入:96 10
输出:_______
10
9
8
7