Cod sursa(job #2284189)
Utilizator | Data | 16 noiembrie 2018 22:23:05 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{ ifstream fin("A+B.int");
ofstream fout("A+B.out");
int a, b, s;
cin>>a>>b;
s=a+b;
fout<<s;
cout<<s;
return 0;
}