Cod sursa(job #1117075)
| Utilizator | Data | 23 februarie 2014 00:23:38 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int m,n;
int main ()
{
f>>n;
f>>m;
cout<<m+n;
g<<m+n;
}
