Cod sursa(job #1437893)
| Utilizator | Data | 18 mai 2015 19:27:14 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.26 kb |
#include <iostream> //biblioteca normala
#include <fstream> //biblioteca pentru fisiere
using namespace std;
ifstream f("adunare.in");
int main ()
{
int a,b, sum=0;
f>>a>>b;
sum=a+b;
cout<<sum; return 0;
}
