Write a statement that assigns cell_count with cell_count multiplied by 10. * performs multiplication. If the input is 10, the output should be:
100
You
Write a statement that assigns cell_count with cell_count multiplied by 10. * performs multiplication. If the input is 10, the output should be:
100
1 cell_count = int(input)
2
3 " Your solution goes here"
4
5 print(cell_count) Run

Respuesta :

Answer:

The complete program is:

cell_count = int(input())

cell_count = cell_count * 10

print(cell_count)

Explanation:

This line gets input for cell_count

cell_count = int(input())

This line multiplies cell_count by 10

cell_count = cell_count * 10

This prints the updated value of cell_count

print(cell_count)