Forezz

ДЗ 4 Н 3

Jul 9th, 2019
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. # _*_ coding: utf-8 _*_
  2. print ("Вставьте ваше число")
  3. n = int(input())
  4. d = 1
  5. f = 2
  6. while f <= n:
  7.     d = d * f
  8.     f +=  1
  9. print (d)
Advertisement
Add Comment
Please, Sign In to add comment