Title : Find The Largest Number in the input Numbers in Python
Description :
We are going to write a python program to find the largest number in the Array.
Source Code:
"""
Developer: MuraliDharan
Company: MDCodings
Licence: Copyright @ MDCodings
"""
a=[]
n=int(input("Enter number of elements:"))
for i in range(1,n+1):
b=int(input("Enter element:"))
a.append(b)
a.sort()
print("Largest element is:",a[n-1])
