Pagini recente » Cod sursa (job #2577541) | Cod sursa (job #2071147) | Cod sursa (job #2284946) | Cod sursa (job #1899464) | 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;
}