Cod sursa(job #1060117)
Utilizator | Data | 17 decembrie 2013 17:04:00 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<iostream>
#include<fstream>
using namespace std;
long long a,b;
int main()
{
ifstream f("A+B.in");
ofstream g("A+B.out");
f>>a>>b;
g<<a+b;
return 0;
}