Cod sursa(job #1431328)
Utilizator | Data | 9 mai 2015 10:33:07 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.19 kb |
#include <fstream>
using namespace std;
int main () {
long long a,b;
ifstream f("adunare.in");
f>>a>>b;
f.close();
ofstream g("adunare.out");
g<<(long long) (a+b);
g.close();
return 0;
}