python,同时输入,同时满足

当同时输入风之石,火之石,水之石后,输出魔法门开启,否则输出释放黑魔法

str=input()
if str=='风之石,火之石,水之石':
  print('魔法门开启')
else:
  print('释放黑魔法')