Cod sursa(job #1262584)
Utilizator | Data | 13 noiembrie 2014 12:42:39 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.2 kb |
#include<iostream>
#include<fstream>
using namespace std ;
ifstream f1("adunare.in");
ofstream f2("adunare.out");
int main ()
{
int a,b ;
f1>>a ;
f1>>b ;
f2<<a+b ;
return 0 ;
}