Cod sursa(job #1939431)
Utilizator | Data | 25 martie 2017 18:52:03 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("ab.in");
ofstream g("ab.out");
int main()
{
long long int a,b,s;
f>>a;f>>b;s=a+b;g<<s;
return 0;
}