#!/usr/bin/env racket #lang racket/base (printf "\n") (printf "\n") ;;; Player Section (let ((player-x (read)) (player-y (read))) (printf "\n" player-x player-y)) ;;; Platforms Section (let ((n (read))) (for ([_ n]) (apply printf "\n" (for/list ([_ 4]) (read))))) (printf "\n")