Cod sursa(job #1687692)

Utilizator Ionut.popescuLiviu Rebreanu Ionut.popescu Data 13 aprilie 2016 00:34:05
Problema A+B Scor 100
Compilator cpp Status done
Runda teme_upb Marime 0.23 kb
#include <bits/stdc++.h>

using namespace std;

int main() {
	freopen("adunare.in", "r", stdin);
	freopen("adunare.out", "w", stdout);
	int time, next; cin >> time >> next;
	cout << (time + next) << '\n';

	return 0;
}