Cod sursa(job #828248)
| Utilizator | Data | 3 decembrie 2012 15:29:44 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main(void)
{
ifstream I("adunare.in");
ofstream O("adunare.out");
int a,b;
I>>a;
I>>b;
O<<a+b;
}
