Cod sursa(job #1394450)
Utilizator | Data | 20 martie 2015 12:25:48 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
unsigned long long a,b,suma;
f>>a;
f>>b;
suma=a+b;
g<<suma;
return 0;
}