Cod sursa(job #1489615)
Utilizator | Data | 21 septembrie 2015 18:43:18 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <bits\stdc++.h>
using namespace std;
int main()
{
unsigned long long a,b;
ifstream f("adunare.in");
f>>a>>b;
ofstream g("adunare.out");
g<<a+b;
return 0;
}