4591: 判断是否为两位数
[Creator : ]
Description
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
if( ) { // 判断 a 是不是两位数,如果是则输出 1,否则输出 0。
} else {
}
if( ) {// 判断 b 是不是两位数,如果是则输出 1,否则输出 0。
} else {
}
return 0;
}
Sample Input Copy
10 99
Sample Output Copy
1
1