Cod sursa(job #1793805)

Utilizator ioana.birsanBirsan Ioana ioana.birsan Data 31 octombrie 2016 16:03:20
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream>

using namespace std;

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

	ifs >> a;
	ifs >> b;
	ofs << a + b;

	return 0;
}