Cod sursa(job #1804202)
Utilizator | Data | 12 noiembrie 2016 12:31:32 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a,b;
ifstream vfi ("adunare.in");
ofstream vfo ("adunare.out");
vfi>>a>>b;
vfo<<a+b;
vfi.close();
vfo.close();
return 0;
}