0
Pro for To Find the Largest of two numbers
Using If... Else...
2 Answers
0
a=int (input ("Enter a number"))
b=int (input ("Enter a second number"))
if a>b:
print ("A is greater than B, a)
else:
print ("B is greater than A, b)
0
The above given program is right but the only mistake in both if and else statement is u forgot to put double quotation" in the another end of print statement