Cod sursa(job #1190442)
| Utilizator | Data | 25 mai 2014 13:10:27 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | itmarathon | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
int a,b,s;
using namespace std;
int main()
{
fstream f("adunare.in.txt",ios::in);
f>>a;
f>>b;
s=a+b;
fstream g("adunare.out",ios::out);
g<<s;
}
