def gi; gets.to_i; end def gc; gets.chomp; end def gsi; gets.split.map(&:to_i); end def pyn(b); puts(b ? 'Yes' : 'No'); end n,m,k=gsi pyn(m+k<=n)