What is the output of the following code

num=3
while True:
   if (num%0o12 == 0):
      break
print(num)
num += 1

 

Posted on by