Cod sursa(job #2195178)
Utilizator | Data | 15 aprilie 2018 15:31:58 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <fstream>
using namespace std;
long long a,b;
int main()
{
ifstream f1("adunare.in");
ofstream f2("adunare.out");
f1 >> a >> b;
f2 << a+b;
}