Computer Science, asked by sritejaswini3638, 7 months ago

Write a program to input 2 number and find the largest among them ?

Answers

Answered by Anonymous
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