Cod sursa(job #1618786)

Utilizator mihai.u97Mihai U mihai.u97 Data 28 februarie 2016 00:00:33
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream>
  ifstream("adunare.in");
  ofstream("adunare.out");
   
 using namespace std;
 
  int main(){
  	int a,b;
  	fin >> a;
  	fin >> b;
  	 fout << (a+b);
  	 return 0;
  }