Cod sursa(job #2194423)
Utilizator | Data | 13 aprilie 2018 11:35:16 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream>
using namespace std;
int main()
{ ifstream f("adunare.in");
ofstream g("adunare.out");
long long a,b,s;
f>>a>>b;
s=a+b;
g<<s;
return 0;
}