Cod sursa(job #2758979)
| Utilizator | Data | 14 iunie 2021 19:17:34 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.32 kb |
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ull unsigned LL
#define ld long double
#define debug if(0)
#define fastio ios_base::sync_with_stdio(0); cin.tie()
int main() {
fastio;
freopen("adunare.in", "r", stdin);
freopen("adunare.out", "w", stdout);
ll a, b;
cin>>a>>b;
cout<<a+b;
}
