Cod sursa(job #598761)

Utilizator DanytzuBran Daniel Danytzu Data 26 iunie 2011 23:00:42
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <iostream>
#include <fstream>
 
using namespace std;
 
ifstream in;
ofstream out;
 
int main()
{
int a,b;
 
in.open("adun.in");
in>>a>>b;
in.close();
 
out.open("adun.out");
out<<a+b<<'\n';
out.close();
 
return 0;
}