summaryrefslogtreecommitdiff
path: root/p3.lisp
blob: 72645fb18ed3a4c901f272b5b85db674155285e6 (plain)
1
2
3
4
5
6
7
(setq n 13195)

(dotimes (i n)
      	(if (eq (mod i n) 0)
 		(print i)
	)
)