# Type your text here from math import * from random import * from kandinsky import * from time import * ladder_1_x=randint(5,300) ladder_1_y=100 ladder_1_w=15 ladder_1_h=25 ladder_1_c=(randint(50,255),randint(50,255),randint(50,255)) fill_rect(0,0,322,222,(0,0,0)) floor_1_x=0 floor_1_y=100 floor_1_w=322 floor_1_h=3 floor_1_c="cyan" floor_2_x=0 floor_2_y=120 floor_2_w=322 floor_2_h=3 floor_2_c="cyan" fill_rect(floor_1_x,floor_1_y,floor_1_w,floor_1_h,floor_1_c) fill_rect(floor_2_x,floor_2_y,floor_2_w,floor_2_h,floor_2_c) fill_rect(ladder_1_x,ladder_1_y,ladder_1_w,2,ladder_1_c) fill_rect(ladder_1_x,ladder_1_y+5,ladder_1_w,2,ladder_1_c) fill_rect(ladder_1_x,ladder_1_y+10,ladder_1_w,2,ladder_1_c) fill_rect(ladder_1_x,ladder_1_y+15,ladder_1_w,2,ladder_1_c) fill_rect(ladder_1_x,ladder_1_y+20,ladder_1_w,2,ladder_1_c) fill_rect(ladder_1_x,ladder_1_y,2,20,ladder_1_c) fill_rect(ladder_1_x+ladder_1_w-2,ladder_1_y,2,20,ladder_1_c)