⌨️
[AtCoder]ABC-061|A - Between Two Integers
設問ページ
提出結果
def getIntMap():
return map(int, input().split())
def main():
a, b, c = getIntMap()
print('Yes' if a <= c and c <= b else 'No')
if __name__ == "__main__":
main()
def getIntMap():
return map(int, input().split())
def main():
a, b, c = getIntMap()
print('Yes' if a <= c and c <= b else 'No')
if __name__ == "__main__":
main()
Discussion