Write the function military-hour that takes a sentence containing a time (in hours only) and returns the military hour as follows:

Make sure that your program works on all of these examples!

; > (military-hour '(12 am))
; 0
; > (military-hour '(12 pm))
; 12
; > (military-hour '(1 pm))
; 13
; > (military-hour '(10 pm))
; 22
; > (military-hour '(4 am))
; 4

(define (military-hour sent)
  'YOUR-CODE-HERE)