Using IDLE,
Shipments to Antarctica all have a 12 digit code. The first three digits are the Box #, the next three are the Pallet #, then the Flight #, and finally the Mission #.
Ex: 007023422519
All of the boxes on Pallets 005 and 006 on Flight 314 contain items that are sensitive to the cold and need to be moved inside immediately. A person scans all of the boxes as they’re unloaded from the plane for inventory. Write a function to alert the scanner when one of the sensitive boxes is unloaded.

Example:
print(sensitive(“001006314521”))
>>> Move this box inside immediately!