1.

Write and print to enter 3no. And find the gretest no. Print out .

Answer» a=int(input( "enter the first no. ="))b=int(input( "enter the second no. ="))c=int(input( "enter the third no. ="))if a>b & a>c :print (a, "is the greatest no".)else if b>a & b>c :print (b, "is the greatest no. ")else :print (c, "is the greatest no. ")


Discussion

No Comment Found