h=int(raw_input("Ingrese hora entera actual: ")) f=int(raw_input("Ingrese horas que transcurriran: ")) r=h+f if r>24: r2=r-24 print "Dentro de", f, "horas mas seran las", r2,"horas." raw_input() else: print "Dentro de", f, "horas mas seran las", r,"horas." raw_input()