Pagini recente » Cod sursa (job #3221486) | Cod sursa (job #1052496) | Cod sursa (job #2074173) | Cod sursa (job #1614537) | Cod sursa (job #2979020)
/******************************************************************************
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;
int a,b;
main ()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<a+b;
return 0;
}