Ответ:
a = int(input())
b = 1
c = 0
while b <= a:
**if a % b == 0:
****c+=1
**b += 1
print(c)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
a = int(input())
b = 1
c = 0
while b <= a:
**if a % b == 0:
****c+=1
**b += 1
print(c)