|
|
|
|
背景 Background |
|
|
为了for beginngers,特设此题,^_^
|
|
|
|
|
|
|
|
描述 Description |
|
|
题目描述
输入一个整数,如果是两位数那么输出”yes”否则输出”no”
样例1
输入
456
输出
no
样例2
输入
93
输出
yes |
|
|
|
|
|
|
|
时间限制 Time Limitation |
|
|
各个测试点1s
|
|
|
|
|
|
|
|
注释 Hint |
|
|
Free Pascal Code:
-------------------
program Plus;
var a,b:longint;
begin
readln(a,b);
writeln(a+b);
end.
C++ Code:
-------------------
#include <iostream>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
cout<<a+b<<endl;
return 0;
}
|
|
|
|
|
|
|
|
|
Flag |
|
题号 |
P1682 |
|
模拟 |
通过 |
140人 |
提交 |
683次 |
通过率 |
20% |
难度 |
0 |
|
|
|
|
|
|