Cod sursa(job #533691)
| Utilizator | Data | 14 februarie 2011 14:16:18 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
ifstream f("ab");
int n,m;
f>>n;
f>>m;
cout<<m+n;
f.close();
return 0;
}