Question: Using python: Given a two-digit integer, print its left digit (a tens digit) and then its right digit (a ones digit). Use the operator of
Using python:
Given a two-digit integer, print its left digit (a tens digit) and then its right digit (a ones digit). Use the operator of integer division for obtaining the tens digit and the operator of taking remainder for obtaining the ones digit.
Example input
79
Example output
7 9
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
