Im stuck on python two math quiz sum two digit problem

Given a rwo digit number. Print the sum of its digits
number = 16

The hints suggest using modulus operator to get the last digit and the division operator to get the first. Any ideas?