ShriRam Changed status to publish August 17, 2023
a=input(“Enter Number 1”);
b=input(“Enter Number 2”);
c=input(“Enter Number 2”);
a=int(a);
b=int(b);
c=int(c);
if a > b:
if a > c:
print(“max is ” + str(a));
else:
print(“max is ” + str(c));
else:
if b > c:
print(“max is ” + str(b));
else:
print(“max is ” + str(c));
ShriRam Changed status to publish August 17, 2023