Cod sursa(job #2244935)

Utilizator deea.andieAndreea Mihaela deea.andie Data 24 septembrie 2018 11:45:39
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include<fstream.h>
using namespace std;
	int main ()
    {
      ifstream fin("adunare.in");
      ofstream fout("adunare.out");
	  int a,b;
	  fin>>a>>b;
	  fout<<a+b;
	  fin.close();
      fout.close();
		return 0;
	}