Cod sursa(job #1523489)
Utilizator | Data | 12 noiembrie 2015 19:45:17 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.19 kb |
#include<fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
long long a,b;
f>>a>>b;
g<<a+b<<'\n';
return 0;
}