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