if __name__ == '__main__':
ideas = [ 'The idea is to pollute the air instead of riding the bike.', # should be false
'The idea is to go cycling instead of driving the car.', # should be true
'The idea is to put your trash everywhere.', # should be false
'The idea is to reduce transport distances.', # should be true
'The idea is to put plants on all the roofs.', # should be true
'The idea is to forbid opensource vaccines.', # should be true
'The idea is to go buy an Iphone every five years.', # should be false
'The idea is to walk once every week in the nature.', # should be true
'The idea is to go buy Green bonds.', # should be true
'The idea is to go buy fast fashion.', # should be false
'The idea is to buy single-use items.', # should be false
'The idea is to drink plastic bottled water.', # should be false
'The idea is to use import goods.', # should be false
'The idea is to use buy more food than you need.', # should be false
'The idea is to eat a lot of meat.', # should be false
'The idea is to eat less meat.', # should be false
'The idea is to always travel by plane.', # should be false
'The idea is to opensource vaccines.' # should be false
print('\t✅ Good idea' if query('Is the idea environmentally friendly?', idea) else '\t❌ Bad idea' )