Write a for loop that prints in ascending order all the positive integers less than 200 that are divisible by both 2 and 3, separated by exactly one space. 
a. for i in range(1, 200): if i % 2 == 0 and i % 3 == 0: print(i, end=' ') 
b. for i in range(1, 200): if i % 6 == 0: print(i, end=' ') 
c. for i in range(1, 200): if i % 2 == 0 or i % 3 == 0: print(i, end=' ') 
d. for i in range(1, 200): if i % 2 == 0: print(i, end=' ')