Cod sursa(job #1923444)
Utilizator | Data | 11 martie 2017 00:46:46 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.27 kb |
#include <iostream>
#include <fstream>
#include <cmath>
#include <iomanip>
#include <cstring>
using namespace std;
ifstream f ("suma.in");
ofstream g ("suma.out");
int main()
{
int a,b;
f>>a>>b;
g<<a+b;
g.flush();
g.close();
return 0;
}