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