Cod sursa(job #217177)
| Utilizator | Data | 27 octombrie 2008 14:05:54 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
using namespace std;
#include <fstream>
long a,b,s;
int main()
{ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
s=a+b;
g<<s;
return 0;
}
