79329548

Date: 2025-01-04 20:31:11
Score: 2
Natty:
Report link

def smaller_num(x,y): if x<y: return x else: return y

x = int(input('Enter the value of x: ') y = int(input('Enter the value of y: ')

print(f"Between {x} and {y} the smallest number is {smaller_num(x,y)}")

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Micah Nyakango