9 lines
108 B
Python
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)
|