Cod sursa(job #1207629)

Utilizator cristibogdanPatrascu Cristian cristibogdan Data 13 iulie 2014 15:01:38
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>

using namespace std;
ifstream f("a+b.in");
ofstream g("a+b.out");
long long a,b;

int main()
{
   f>>a>>b;
   g<<a+b;
    return 0;
}