#!/usr/bin/env python3 COMPOSITE = 0 PRIME = 1 class Number: def __init__(self): self._int = int() self._kind = COMPOSITE