Answer:
Following are the code to this question:
m=3#defining a variable m
while(m<22):#defining a while loop to count value
print(m)#print value
m=m+3#increment the value by 3
Output:
Please find the attached file.
Explanation:
Note: In the given question, it is not clear that what the question asks about so, we describe the code above and its description can be defined as follows.
In the above code, an integer variable m is defined, that holds an integer value, in the next step, it uses a while loop to increment the value by 3 and use the print method to print its calculated value.