其實這題很簡單
你先定義變數 名為 a 跟 b
然後再用f-string印出他們在印出他們的結果就可以了
難度我覺得是新手題吧
a, b = map(int, input().split())print(f"{a}^{b} = {a**b}")