8 lines
164 B
Plaintext
8 lines
164 B
Plaintext
#unit random
|
|||
import PABCSystem
|
|||
|
|||
def random() -> float:
|
|||
return PABCSystem.random()
|
|||
|
|||
def randint(a: int, b: int) -> int:
|
|||
return PABCSystem.random(a, b)
|