Cod sursa(job #1088958)
Utilizator | Data | 21 ianuarie 2014 00:43:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main ()
{
int a,b;
f>>a>>b;
g<<a+b;
g.flush();
system("PAUSE");
return 0;
}