Cod sursa(job #28912)

Utilizator adyzahoAdrian Zahoi adyzaho Data 8 martie 2007 14:18:38
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include "fstream.h"
int main()
{
 ifstream in("adunare.in");
 ofstream out("adunare.out");
 long a,b;
 in>>a>>b;
 out<<a+b;
 in.close();
 out.close();
}