阅读程序写结果。
#include<iostream>
using namespace std;
int main() {
int x;
cin >>x;
if(x>100){
x-=10;
}
cout <<x;
return 0;
输入: 110
输出:______
100
99
98
97