Cod sursa(job #1714052)

Utilizator pacheprotopopescuPake Protopopescu pacheprotopopescu Data 7 iunie 2016 11:29:14
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>

using namespace std;

int main()
{
   ifstream f("adunare.in");
   ofstream g("adunare.out");
   long int a,b;
   f>>a>>b;
   g<<a+b;

}