Cod sursa(job #479252)
| Utilizator | Data | 23 august 2010 13:53:41 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
# include <fstream>
using namespace std;
long long a, b;
int main (){
ifstream f ("adunare.in");
ofstream g ("adunare.out");
f>>a>>b;
g<<a+b;
g.close();
return 0;
}