김형률

-change parameter a to b

Showing 1 changed file with 3 additions and 3 deletions
1 -a=input() 1 +b=input()
2 -if (a=="A"): 2 +if (b=="A"):
3 print("A") 3 print("A")
4 -elif (a=="B"): 4 +elif (b=="B"):
5 print("B") 5 print("B")
6 else : 6 else :
7 print("error") 7 print("error")
......