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