CSE505/randomgen.py

6 lines
146 B
Python
Raw Normal View History

2024-02-21 23:53:58 -05:00
import random
2024-02-22 13:58:13 -05:00
x = int(input())
for i in range(10 * x):
j = random.randint(1,x)
k = random.randint(1,x)
2024-02-21 23:53:58 -05:00
print("edge(", j, ",", k, ").")