Cod sursa(job #1478233)

Utilizator felix_vsGherasim Felix felix_vs Data 28 august 2015 10:50:24
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <fstream>

using namespace std;

int main()
{
     int a=0,b=0;
     ifstream fin("adunare.in");
     fin>>a>>b;
     ofstream fout("adunare.out");
     fout<<a+b;

     return 0;






}