Files
workspace/python/test/test.py
2026-01-26 10:50:01 +08:00

9 lines
108 B
Python

import collections
a = 15
b = 16
c = int(input("Give a integer input"))
x = {a, b, c}
print(a + b + c, x)