"""Original ScribeShot exercise; Python 3, standard library only."""
def total(text):
    """Sum whitespace-separated integers. Reject non-integer tokens."""
    return sum(int(part) for part in text.split())

if __name__ == "__main__":
    print(total("10  20 30"))
