Cod sursa(job #21070)

Utilizator zackNicu G zack Data 22 februarie 2007 21:26:25
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include<iostream.h>
#include<fstream.h>

void main(){

	ifstream f("date.in");
	ofstream g("date.out");

    unsigned a,b;

	f>>a>>b;
	g<<"Suma e "<<a+b;

	f.close();
	g.close();

}