Cod sursa(job #3123545)
| Utilizator | Data | 24 aprilie 2023 16:44:07 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.3 kb |
#include <bits/stdc++.h>
#define Inf 0x3f3f3f3f
using namespace std;
int main(){
//ios_base::sync_with_stdio(false);
//cin.tie(0);
//cout.tie(0);
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
int a,b;
cin>>a>>b;
cout<<a+b;
return 0;
}
