Cod sursa(job #520902)
Utilizator | Data | 10 ianuarie 2011 18:59:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a,b;
ifstream k("adunare.in.txt");
ofstream l("adunare.out.txt");
k>>a>>b;
l<<a+b;
return 0;
}