From 628accdbaf87bbf5ebc2668381decd1036a76bc9 Mon Sep 17 00:00:00 2001 From: theveetragnhr <62690947+theveetragnhr@users.noreply.github.com> Date: Fri, 2 Oct 2020 00:22:25 +0530 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 2cf56cc..a788327 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")