题目描述
輸入 $A$ 和 $B$ ,求出他們的值
样例
input:
1 1
output:
2
算法: $O(1)$
直接輸入兩個數。
并沒有什麽好説的
时间复杂度
輸入兩個數的複雜度是O(2),可以忽略不記。
参考文献
C++ 代码
#include<iostream>
using namespace std;
int main(){
ios:sync_with_stdin(0),cin.tie(0),cout.tie(0);
int a,b;
cin>>a>>b;
cout<<a<<b;
return 0;
}