运行下面的程序,输入T,输出结果是( )。
v = input() if v == "M": print(1) elif v == "C": print(2) elif v == "T": print(4) else: print("Invalid")
1
2
4
Invalid