Skip to content

Instantly share code, notes, and snippets.

@modos
Created March 6, 2024 23:09
Show Gist options
  • Save modos/dd38c01bae203c1b8e87694eaed05f9b to your computer and use it in GitHub Desktop.
Save modos/dd38c01bae203c1b8e87694eaed05f9b to your computer and use it in GitHub Desktop.
شش سنگ
stone_colors = {
'space': 'blue',
'mind': 'yellow',
'reality': 'red',
'power': 'purple',
'time': 'green',
'soul': 'orange'
}
stone_name = input().strip()
if stone_name in stone_colors:
print(stone_colors[stone_name])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment