Cod sursa(job #763278)
Utilizator | Data | 1 iulie 2012 16:01:12 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main(){
ifstream readf("adunare.in");
int a,b;
readf>>a>>b;
ofstream writef("adunare.out");
writef<<a+b;
writef.close();
readf.close();
return 0;
}