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")