•Задание 1 print ('Введите число а') a = int(input()) print ('Введите число b') b = int(input()) с = a a = b b = с print ('a =',a) print ('b =',b) •Задание 2 print ('Введите число а') a = int(input()) print ('Введите число b') b = int(input()) a, b = b, a print ('a =',a) print ('b =',b) •Задание 3 print ('Введите число а') a = int(input()) print ('Введите число b') b = int(input()) print ('Введите число с') c = int(input()) a, b, c = c, a, b print ('a =',a) print ('b =',b) print ('c =',c) •Задание 4 nums = map(int, input(). split()) print(list(nums)) •Задание 5 nums = map(float, input(). split()) print(list(nums))