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; }