Write a program to input 2 number and find the largest among them ?
Answers
Answered by
3
Answer:
its a python program
Explanation:
a=int(input("enter the first number"))
b=int(input("enter the second number"))
if a>b:
large=a
else:
large=b
print(large,"is the largest of the two numbers")
#hope it helps you!!
"please mark brainliest"
Similar questions