Cod sursa(job #1184649)

Utilizator geogeo12Ifrim George geogeo12 Data 13 mai 2014 18:50:00
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <cmath>
#include <fstream>
#include <cstring>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");


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