Cod sursa(job #1447205)
Utilizator | Data | 3 iunie 2015 20:44:49 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream fi ("adunare.in");
ofstream fo ("adunare.out");
long long a,b,s;
int main()
{ fi>>a>>b;
s=a+b;
fo<<s;
return 0;
}