Cod sursa(job #611475)
Utilizator | Data | 1 septembrie 2011 18:15:10 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main()
{int a,b;
ifstream f("adunare.in");
ofstream t("adunare.out");
f>>a; f>>b; cout<<a+b;
return 0;
}