mirror of
https://github.com/mii443/RustySecrets.git
synced 2025-08-22 16:25:32 +00:00
6 lines
128 B
Python
6 lines
128 B
Python
from common import field
|
|
|
|
for i in sorted(field):
|
|
for j in range(0, 256):
|
|
print("{} ^ {} = {}".format(i, j, i ^ j))
|