Pagini recente » Cod sursa (job #3130164) | Cod sursa (job #1278798) | Cod sursa (job #3189482) | Cod sursa (job #639529) | Cod sursa (job #3213336)
/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <iostream>
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main()
{
int a, b;
in >> a >> b;
out << a+b;
}