Cod sursa(job #965668)
| Utilizator | Data | 24 iunie 2013 14:02:38 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream>
using namespace std;
int main()
{
long a,b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a;
fin>>b;
fout<<a+b;
return 0;
}
