class Lab6BQ1: @staticmethod def main(): i = 1 print("Multiples of 4: ") while i <= 20: print(i * 4, end=' ') # end=' ' -> used to stay on the same line when displaying output i += 1 print() Lab6BQ1.main()