Cod sursa(job #1621353)
Utilizator | Data | 29 februarie 2016 18:36:14 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.14 kb |
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
int main()
{f>>a>>b;
g<<a+b;
}