def main(): n, m, k = map(int, input().split()) print('Yes' if n >= m + k else 'No') if __name__ == '__main__': main()