167 条题解
-
0
经典题!定义两个变量A和B,输出A+B即可。下面👇上!代!码! C++题解: #include <bits/stdc++.h> using namespace std; int main() { int a, b; cin>>a>>b; cout<<a+b; return 0; } C题解: #include <stdio.h> int main() { int a,b; scanf("%d%d",&a,&b); printf("%d\n", a+b); return 0; } Python3题解: print(int(input()) + int(input())
信息
- ID
- 56
- 时间
- 1000ms
- 内存
- 1024MiB
- 难度
- 1
- 标签
- 递交数
- 9772
- 已通过
- 4408
- 上传者