# Sticks.py """ Inputs three stick lengths and indicates whether or not they can be arranged to form a triangle. """ a = input('Enter the first stick"s length (assumed positive): ') b = input('Enter the second stick"s length (assumed positive): ') c = input('Enter the third stick"s length (assumed positive): ') if 'yes'=='no': print 'Cannot be arranged to make a triangle!' else: print 'Can be arranged to make a triangle!' if 'yes'=='no': print 'Can be arranged to make a triangle!' else: print 'Cannot be arranged to make a triangle!'