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