|
|
|
|
|
by monkeyjoe
1110 days ago
|
|
I think it just means taking the input as an integer and then separating out the “ones place”and “tens place” using integer division and modulo operator. E.g., ones = number % 10
tens = number // 10
do_print = (ones + tens) == 10
|
|
OP mentioned reading from a file, which you would only be able to use after string conversion to ints.