Cod sursa(job #942308)
Utilizator | Data | 21 aprilie 2013 19:49:38 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<iostream>
#include<fstream>
using namespace std;
unsigned long int a, b;
int main(){ifstream f("adunare.in");
f>>a>>b;
f.close();
ofstream f1("adunare.out");
f1<<a+b;
f1.close();
}