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