Cod sursa(job #2258250)

Utilizator IOI_MDA_003Sebastian Chicu IOI_MDA_003 Data 11 octombrie 2018 08:41:38
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.26 kb
#include <bits/stdc++.h>
using namespace std;
 
ifstream fin ("adunare.in");
ofstream fout("adunare.out");

#ifdef INFOARENA
#define cout fout
#define cin fin
#endif // INFOARENA

int a, b;

int main() {
	cin >> a >> b;
	cout << a + b;
	return 0;
}