Cod sursa(job #509972)
Utilizator | Data | 12 decembrie 2010 11:15:49 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main(){
ifstream inp("adunare.in");
int x, y;
inp >> x;
inp >> y;
inp.close();
cout << x+y;
return 0;
}