Cod sursa(job #669570)
Utilizator | Data | 27 ianuarie 2012 12:24:10 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
long long int a,b;
ifstream g("adunare.in");
g>>a>>b;
a=a+b;
ofstream t("adunare.out");
t<<a;
g.close();
t.close();
return 0;}