Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
goelp14
GitHub Repository: goelp14/easyctf-iv-problems
Path: blob/master/prog_xor/generator.py
650 views
1
case = int(input())
2
3
import random
4
5
a = random.randint(0, 2 ** 31 - 1)
6
b = random.randint(0, 2 ** 31 - 1)
7
8
print("{} {}".format(a, b))
9
10