Pagini recente » Cod sursa (job #2409582) | Cod sursa (job #2211142) | Cod sursa (job #1151542) | Cod sursa (job #2492827) | Cod sursa (job #2420417)
#include <bits/stdc++.h>
#define NMAX 100001
#define MOD 100001
#define ff first
#define sd second
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
typedef long long ll;
typedef long double ld;
ll lgput(ll a, ll b)
{
ll Nr=1;
while(b)
{
while(b%2==0) {a*=a,b/=2;}
if(b%2) Nr*=a,b--;
}
return Nr;
}
ll inv(ll a, ll b)
{
ll Nr=1;
b-=2;
while(b)
{
while(b%2==0) {a*=a;a%=MOD;b/=2;}
if(b%2) Nr*=a,Nr%=MOD,b--;
}
return Nr;
}
int dx[]={-1,0,1,0};
int dy[]={0,1,0,-1};
int main()
{
/*ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
*/
int A,B;
fin>>A>>B;
for(int i=1;i<=B;++i)
A++;
fout<<A<<"\n";
return 0;
}