package main

import "fmt"

const wordsPerMinute = 200

// readingTime returns the number of whole minutes needed to read wordCount.
// A partial minute rounds up. Zero or negative input returns zero.
func readingTime(wordCount int) int {
	// TODO: implement this function in lesson 0001.
	return 0
}

func main() {
	fmt.Printf("450 words takes about %d minutes\n", readingTime(450))
}
