Cod sursa(job #1433932)

Utilizator avalexandrescuAdrian Alexandrescu avalexandrescu Data 10 mai 2015 11:04:00
Problema A+B Scor 100
Compilator cpp Status done
Runda preitmarathon2015 Marime 0.18 kb
#include <fstream>
 
using namespace std;
 
ifstream f("adunare.in");
ofstream g("adunare.out");
 
long long a,b;
int main()
{
    f>>a>>b;
    g<<a+b;
    return 0;
}