Cod sursa(job #2217885)
Utilizator | Data | 2 iulie 2018 15:20:00 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
unsigned a,b,s;
int main()
{
f>>a;
f>>b;
s=a+b;
g<<s;
f.close();
g.close();
return 0;
}