C 解法, 执行用时: 2ms, 内存消耗: 292K, 提交时间: 2022-01-08 13:28:32
#include<stdio.h> int main() { int a,b; scanf("%d%d",&a,&b); printf("%d",a+b); return 0; }
C++ 解法, 执行用时: 3ms, 内存消耗: 376K, 提交时间: 2021-06-24 16:10:29
#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; cout<<a+b; }
Python3 解法, 执行用时: 42ms, 内存消耗: 6900K, 提交时间: 2021-07-09 19:26:53
s = map(int,input().split()) print(sum(s))