Pagini recente » Cod sursa (job #1036481) | Cod sursa (job #1318918) | Cod sursa (job #291985) | Cod sursa (job #1630467) | Cod sursa (job #3212811)
/******************************************************************************
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 fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
int a,b;
fin >> a >> b;
fout << a + b;
fin.close();
fout.close();
return 0;
}