Write a program to find cube of a number and check if the cube is divisible by 3 or not in python code example
Example: how to find the multiples of a number in python
def multiples(m, count):
for i in range(count):
print(i*m)
def multiples(m, count):
for i in range(count):
print(i*m)