Cod sursa(job #1354589)

Utilizator vladrochianVlad Rochian vladrochian Data 21 februarie 2015 21:43:38
Problema A+B Scor 100
Compilator cpp Status done
Runda Lista lui wefgef Marime 0.15 kb
#include <fstream>

int main() {
	int a, b;
	std::ifstream("adunare.in") >> a >> b;
	std::ofstream("adunare.out") << a + b << "\n";
	return 0;
}