Cod sursa(job #354896)
Utilizator | Data | 9 octombrie 2009 20:36:21 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
using namespace std;
int main(){
int a,b;
ofstream fout("adunare.out");
ifstream fin("adunare.in");
fin>>a>>b;
fout<<(a+b);
fin.close();
fout.close();
}