• + 0 comments

    I came up with a different solution I think than most. But still works ¯\_(ツ)_/¯

    if __name__ == '__main__':
        n = int(input())
        
        v_value = 0
        
    while v_value < n:
        print(v_value * v_value)
        v_value = v_value + 1