Cod sursa(job #2446708)
Utilizator | Data | 10 august 2019 15:17:11 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
fstream f("adunare.in");
ofstream o("adunare.out");
int a,b;
f >> a;
f >> b;
o << (a+b);
}