Cod sursa(job #2086614)

Utilizator aTx98Alexandru aTx98 Data 12 decembrie 2017 11:52:48
Problema A+B Scor 0
Compilator cpp Status done
Runda simtest Marime 0.33 kb
#include <iostream>
#include <fstream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) 
{
	ifstream cin("adunare.in.txt");
    ofstream cout("adunare.out.txt");
	int a,b;
	cin >> a >> b;
	cout << a+b;
	return 0;
}