p = ( n % 10 ) * 10 + int ( m % 100 / 10 );
funcționează în majoritatea limbajelor de programare sau poate fi adoptat.
exemplu din python:
Python 2.7.5+ (default, Sep 19 2013, 13:48:49)
[GCC 4.8.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> n = 12359
>>> m = 65476
>>> p = ( n % 10 ) * 10 + int ( m % 100 / 10 )
>>> print p
97