Spaces:
Runtime error
Runtime error
File size: 209 Bytes
36ed17a |
1 2 3 4 5 6 7 8 |
import random
def add_random_number(user_input: int) -> int:
random_addition = random.randint(1, 100) # Add a random number between 1 and 100
result = user_input + random_addition
return result
|