Cod sursa(job #1257264)
Utilizator | Data | 7 noiembrie 2014 15:33:33 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{long int a,b,s;
ifstream f("date.in");
ofstream g("date.out");
f>>a>>b;
s=a+b;
g<<s;
return 0;
}