# This program prints the sum of digits of # hundred's and unit's position n = input("Enter a positive integer >= 100: ") print n%10 + (n/100)%10