9.寫出程式執行結果。a=1match a:case 1:b='春'case 2:b='夏'case 3:b='秋'case 4:b='冬'case _:b='輸入錯誤'print(b)(A)春(B)夏(C)秋(D)程式錯誤