﻿from cmath import *

def Suite():
    z=2
    n=0
    while abs(z)<=100:
        z=(1-1j)*z+1j
        n=n+1
    return n
