Cod sursa(job #2866648)
Utilizator | Data | 9 martie 2022 21:18:08 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include<bits/stdc++.h>
using namespace std;
int main()
{
freopen("adunare.in", "r", stdin);
freopen("adunare.out", "w", stdout);
ios::sync_with_stdio(0);
cin.tie(0);
int a, b;
scanf("%d %d", &a, &b);
printf("%d\n", a+b);
return 0;
}