Cod sursa(job #1921957)
Utilizator | Data | 10 martie 2017 15:29:37 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
long a,b,s;
f >>a>>b;
s=a+b;
g<<s;
}