请用编写程序,将以下内容以两行方式显示he says“good afternoon”,I’m fine too!
s = "he says“good afternoon”,I’m fine too!" a = s.split(',') print(a[0],"\n",a[1])