a = float(input("Enter the first number: "))b = float(input("Enter the second nu
23-03-2024
a = float(input("Enter the first number: "))
b = float(input("Enter the second number: "))
c = float(input("Enter the third number: "))
max_num = max(a, b, c)
print("Largest number:", max_num)
Copyrights © 2024 letsupdateskills All rights reserved