#!/usr/bin/env python3
# Use input to read three integers for the dimensions of a box
# Calculate the volume
# Volume is calulated as length * width * height
# A transcript of what the program should print is -
# Height:
# Width:
# Depth:
# Volume:
# Print a space after each colon
# If the user typed 5 2 10, the output would be 100.
try:
h = int(input('Height:'))
w = int(input('Width:'))
d = int(input('Depth:'))
print('Volume:', h*w*d)
except ValueError:
print('Bad input.')