Instead of:
int Minute = 0; // variable to store the value coming from the sensor
int Hours = 0; // variable to store the value coming from the sensor
Try:
long Minute = 0; // variable to store the value coming from the sensor
long Hours = 0; // variable to store the value coming from the sensor