Cod sursa(job #816514)
| Utilizator | Data | 17 noiembrie 2012 12:48:23 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <iostream>
using namespace std;
int main(){
ifstream fi ("adunare.in");
ofstream fo ("adunare.out");
int a,b,x;
fi >> a >> b;
x = a + b;
return 0;
}