// p02_03: Sum of final two decimal digits.
#include <iostream>
using namespace std;

int main() {
int x;
cout << "Enter an integer: ";
cin >> x;
if (x < 0) x = -x;
cout << "The sum of the final two digits is "
     << x%10 + x%100/10 << endl;
return 0;

}
