Pagini recente » Cod sursa (job #1350949) | Cod sursa (job #3156474) | Cod sursa (job #2476652) | Cod sursa (job #2381552) | Cod sursa (job #1166967)
/******************************************************************************************
* .--. *
* ::\`--._,'.::.`._.--'/:: @author Ana M. Mihut @course InfoArena Prep *
* ::::. ` __::__ ' .::::: @alias LT-Kerrigan @date 03.04.2014 *
* ::::::-:.`'..`'.:-:::::: @link http://infoarena.ro/problema/adunare *
* ::::::::\ `--' /:::::::: @detail Simple Addition *
* *
*******************************************************************************************/
#include "stdafx.h"
#include <iostream>
int main() {
freopen("adunare.in", "r", stdin);
freopen("adunare.out", "w", stdout);
int a, b;
std::cin >> a >> b;
std::cout << a + b;
std::cin.get();
return 0;
}