#include "Fecha.h"

int main(){
	Fecha f1(5, 4, 2000); 
	Fecha f2(5, 4, 2000); 
	f1.mostrarFecha();
	f2.mostrarFecha();

	if(f1 <= f2){
		cout<<"cierto"<<endl;
	}
	else{
		cout<<"falso"<<endl;
	}
	return 0;
}
