Pagini recente » Rating Mihail Costea (mihail_costea) | Cod sursa (job #1305783) | Cod sursa (job #2753336) | Cod sursa (job #2241243) | Cod sursa (job #1166968)
/******************************************************************************************
* .--. *
* ::\`--._,'.::.`._.--'/:: @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>
#include <fstream>
std::ifstream in("adunare.in");
std::ofstream out("adunare.out");
int main() {
long long a, b;
in >> a >> b;
out << a + b;
return 0;
}