##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 04\04.01 - Reads two values and prints which one is larger.py
# Description: Reads two values and prints which one is larger
##############################################################################
a = int(input("First value: "))
b = int(input("Second value: "))
if a > b:
print("The first value is the highest!")
if b > a:
print("The second value is the highest!")