(define (one-char s) (let ((ss "yukicoder") (pos (string-scan s #\?))) (if pos (string-ref ss pos) #\return))) (print (one-char (read-line)))