def cube(i):
return i*i*i
def beep():
print "\a"
print "The cube of 10 is ", cube(10)
input_int = int(raw_input("Input Integer: "))
if input_int < 1:
beep()
print "Input is Invalid"
else:
print "The cube of %d is %d" %(input_int, cube(input_int))
def cube(i):
return i*i*i
def beep():
print "I am going to beep!"
print "\a"