Cod sursa(job #2578777)
Utilizator | Data | 11 martie 2020 16:07:30 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include<fstream>
using namespace std;
int main ()
{
ifstream f("adunare.in");
int a,b;
f>>a>>b;
ofstream o("adunare.out");
o<<a+b;
f.close();
o.close();
}