Cod sursa(job #2369453)

Utilizator dream3rDavid Pop dream3r Data 5 martie 2019 23:31:00
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.26 kb
#include <iostream>
#include <fstream>/*
#include <string>
#include <cctype>
#include <sstream>
#include <string.h>
*/
using namespace std;
ifstream f("adunare.in");
ofstream o("adunare.out");
int main(){
	int a, b;
	f >> a >> b;
	o << a + b;
	return 0;
}