Cod sursa(job #2216513)
Utilizator | Data | 26 iunie 2018 23:21:41 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
using namespace std;
#include <fstream>
#define mod 2 000 000 000
int main()
{ifstream f("adunare.in");
ofstream g("adunare.out");
long long a,b;
f>>a>>b;
g<<(a+b);
}