游客 Signup | Login
中文 | En

1995 - A+BBB

A+B

Input

A+B

Output

A+B

Examples

Input

123456 654321

Output

777777

Solution C

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

Solution C++

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

Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题