"""Exercise 10.9.2 — The star on args

Chapter 10: Functions — Everyday Programming

This program should print all the extra numbers it receives as a tuple.

This program contains exactly one bug. Solution: sol_10_9_2.py
"""

def show_numbers(args):
    print(args)

show_numbers(1, 2, 3)  # (1, 2, 3)
