Cod sursa(job #2513492)

Utilizator imloreLorena B imlore Data 23 decembrie 2019 11:10:57
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <iostream>
#include <fstream.h>
int main(){
	int a,b;
	ifstream fin("adunare.in");
	ofstream fout("adunare.out");
	fin>>a>>b;
	fout<<a+b;
	return 0;}