Description:
Find the largest among three given numbers.
Find the largest among three given numbers.
Python Code
a, b, c = 45, 72, 38
maximum = max(a, b, c)
print("Maximum:", maximum)
Expected Output
Maximum: 72