BASIC PYTHON PROGRAM: WAP to find the Greatest Number among 3
a= float(input("Enter a number "))b= float(input("Enter a number "))c= float(input("Enter a number "))if (a>b) and (a>c): gnum= aelif (b>a) and (b>c): gnum=belse: gnum=cprint("...