Cod sursa(job #763276)
Utilizator | Data | 1 iulie 2012 15:58:33 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.27 kb |
#include<iostream>
#include<conio.h>
#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();
getch();
return 0;
}