Int declarations

Instead of

   int Mcount=35;                   // and the minute count to 35.
   delay(500);                        //I did have an lcd.print(Mcount)
      }

just simply

   Mcount=35;                   // and the minute count to 35.
   delay(500);                        //I did have an lcd.print(Mcount)
      }