Generation

generate functionThu, 13 Apr 2023

codigo de cual numero entero (3) es mayor

def mayor(a, b, c): if a > b and a > c: print(a) elif b > a and b > c: print(b) else: print(c) mayor(2, 3, 5)

Want to kickstart your project?Use the new AI Studio to create your code