Cod sursa(job #1685442)

Utilizator cyber_ghSoltan Gheorghe cyber_gh Data 11 aprilie 2016 17:56:10
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>

using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");

int main(){
	int a,b;
	fin >>a>>b;
	cout <<a+b;
	
	return 0;
}