##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 04\04.1069 - No Title.py
# Description: No Title
##############################################################################
score = input("Enter your exams' score:")
if score < 4:
print("Unfortunately you didn't pass")
if score < 7:
print("You're in recovery")
if score > 7:
print("You passed the year")