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