Cod sursa(job #1853313)
Utilizator | Data | 21 ianuarie 2017 17:08:07 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<cstdio>
using namespace std;
int a, b;
int main(){
freopen("adunare.in","r",stdin);
freopen("adunare.out","w",stdout);
scanf("%d%d", &a, &b);
printf("%d\n", a+b);
return 0;
}