Advertisement
gruntfutuk

random

Apr 24th, 2018
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. import random
  2. x = int(input ('first number'))
  3. y = int(input ('second number'))
  4. random_number = random.randint(x, y)
  5. print(random_number)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement