Cod sursa(job #2902887)

Utilizator sebitcrSebiTCR sebitcr Data 16 mai 2022 21:43:22
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <iostream>
#include <fstream>

int main(){
	int a,b;
	std::ifstream fin("adunare.in");
	std::ofstream ofs("adunare.out");

	fin >> a >> b;

	ofs << a + b;
}