#!/usr/bin/env python

import time
import sys
import os

from datetime import datetime
now = datetime.now()

f = open("heure.txt", "r")
H = int(f.readline())
MN = int(f.readline())
print(H)
print(MN)
if H == now.hour and MN == now.minute :
    print (H + MN)
f.close()



