#!/bin/gosh (define a (read)) (define b (read)) (print ((lambda (a b) (if (zero? (modulo b a)) (quotient b a) (+ (quotient b a) 1))) a b))