Cod sursa(job #843611)

Utilizator hiticas_abelhiticasabel hiticas_abel Data 28 decembrie 2012 03:26:25
Problema A+B Scor 100
Compilator cpp Status done
Runda 23dezile_2 Marime 0.17 kb
#include<fstream>
using namespace std;

int main()
{
ifstream f("adunare.in");
 ofstream g("adunare.out");
 int a, b;
 f>>a>>b;
 g<<a+b;
 
 return 0;
    
}