Cod sursa(job #2391543)
Utilizator | Data | 28 martie 2019 22:43:13 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
#include <cmath>
using namespace std;
ifstream f("cifra.in");
ofstream g("cifra.out");
int s,a,b;
int main()
{
f>>a>>b;
s=a+b;
g<<s;
return 0;
}