Cod sursa(job #2188371)
Utilizator | Data | 27 martie 2018 09:18:42 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | bpc9 | Marime | 0.21 kb |
#include <iostream>
#include<fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b,S=0;
f>>a>>b;
S=a+b;
g<<S;
return 0;
}