Cod sursa(job #2058916)
Utilizator | Data | 6 noiembrie 2017 13:58:29 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream>
#include <iostream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
long long int A,B;
f>>A>>B;
g<<A+B;
return 0;
}