# Italiano total_italiano = 72 hechas_italiano = 29 faltan_italiano = total_italiano - hechas_italiano # Matematica total_mate = 40 hechas_mate = 8 faltan_mate = total_mate - hechas_mate # Matematica Libro total__mate2 = 26 hechas_mate2 = 12 faltan_mate2 = total__mate2 - hechas_mate2 # Ingles total__english = 48 hechas_english = 35 faltan_english = total__english - hechas_english # Detective ITA total__detective_ita = 52 hechas_detective_ita = 52 faltan_detective_ita = total__detective_ita - hechas_detective_ita # Estado actual de dias dias_pasados = Today()-Date('06/06/25') dias_faltan = Date('14/9/2025')-Today() dias_totales = Date('14/9/2025')-Date('06/06/25') # Resumen total = total_italiano+total_mate+total__mate2+total__english + total__detective_ita hecho = hechas_italiano + hechas_mate + hechas_mate2 + hechas_english + hechas_detective_ita faltan = total - hecho porcentaje_hecho = (hecho/total)*100 # Porcentaje de Vaciones ya pasada 100*dias_pasados/dias_totales # Promedio actual hecho/dias_pasados # Minimo para terminar hacer_por_dia = faltan/dias_faltan