Write an assembly program that inputs a positive integer i, finds all its divisors, and outputs the calculated result. Here is a possible sample dialog (the user entered 10):
Find all divisors.
Enter i: 10
Divisors:
1
2
5
10
Compile and test your solution with different input values.