Cod sursa(job #28419)

Utilizator cristina_ana_tdrToderoiu Cristina Ana cristina_ana_tdr Data 7 martie 2007 20:02:48
Problema Reuniune Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.28 kb
#include <fstream.h>
long int x01, y01, x11, y12, x21, y21, x31, y32, x41, y41, x51, y52;
int main()
{
ifstream f("reuniune.in");
ofstream g("reuniune.out");
f>>x01>>y01>>x11>>y12;
f>>x21>>y21>>x31>>y32;
f>>x41>>y41>>x51>>y52;
g<<"0"<<"0";
f.close();
g.close();
return 0;
}