1995 - A+BBB

通过次数

0

提交次数

0

时间限制 : 1 秒 内存限制 : 128 MB

A+B

题目输入

A+B

题目输出

A+B

输入/输出样例

输入格式

123456 654321

输出格式

777777

C语言解答

#include<stdio.h>
int main(){
   int a,b;
  scanf("%d%d",&a,&b);
  printf("%d\n",a+b);
  return 0;
}

C++解答

#include<bits/stdc++.h>
using namespace std;
long long a,b;
int main()
{
    cin>>a>>b;
    cout<<a+b;
   return 0;
}

Python解答

# coding=utf-8
a,b = map(int,input().split())
print(a+b)