Den354

task_1_3.py

Jan 27th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | None | 0 0
  1. a = int(input())
  2. a1 = a // 100
  3. a2 = a % 100 // 10
  4. a3 = a % 10
  5. print(a1*a2*a3)
Advertisement
Add Comment
Please, Sign In to add comment