From bc9012ff1ade0a7fd3cbf295efa41b4ea8ddfcd4 Mon Sep 17 00:00:00 2001 From: Gopal-786 <65762301+Gopal-786@users.noreply.github.com> Date: Sat, 17 Oct 2020 06:35:27 -0700 Subject: [PATCH] Update Largest Among Three Numbers --- Largest Among Three Numbers | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Largest Among Three Numbers b/Largest Among Three Numbers index 1a3e39a..c5ffc19 100644 --- a/Largest Among Three Numbers +++ b/Largest Among Three Numbers @@ -5,8 +5,8 @@ b = int(input()) c = int(input()) if a>b and a>c: - print(a, " is largest") + print(a, " is Largest") elif b>a and b>c: - print(b, " is largest") + print(b, " is Largest") else: - print(c, " is largest") + print(c, " is Largest")