Cod sursa(job #2269972)

Utilizator strehaianurazvanStrehaianu Marin Razvan strehaianurazvan Data 26 octombrie 2018 20:48:25
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <iostream>
#include <fstream>
using namespace std;


int main()
{
	ifstream fin("in.txt");
	ofstream fout("out.txt");
	int a,b;
	fin>>a>>b;
	fout<<a+b;
	return 0;
}