题解 | #牛妹的烦恼#
牛妹的烦恼
https://www.nowcoder.com/practice/e7e616bf2f00406b80b0d41e5368ee93
a,b,c = map(int,input().split())
test = "Python" if a>b+c else ("Java" if b>a+c else "C")
print(test)
牛妹的烦恼
https://www.nowcoder.com/practice/e7e616bf2f00406b80b0d41e5368ee93
a,b,c = map(int,input().split())
test = "Python" if a>b+c else ("Java" if b>a+c else "C")
print(test)
相关推荐