Cod sursa(job #1954015)
Utilizator | Data | 5 aprilie 2017 10:04:13 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <fstream>
using namespace std;
ifstream fin("A+B.in");
ofstream fout("A+B.out");
int a, b;
int main()
{
fin>>a>>b;
fout<<a+b;
return 0;
}