Files
python-by-example-150-chall…/challenges1-11/challenage-011.py

5 lines
199 B
Python
Raw Normal View History

2019-07-17 09:56:46 +03:00
large = int(input('enter number over than 100 : '))
small = int(input('enter number smaller than 10 : '))
answer = large//small
print('{0} goes into {1} for {2} times'.format(small, large, answer))