s = input("Enter a string: ") #s = 123 match s: case 'ann'|'bob'|'hello': print("in the first case") case 123: print("It's 123") case _: print("the default case")