You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
sirius_python/task9.py

11 lines
56 B

a = 10
b = 20
c = a
a = b
b = c
a,b = b,a
print(a,b)