Yes, so I want to convert a number from BCD to DEC.

I've already found a solution:

hh =( hh >> 4 * 10 ) + ( hh // 16 )

But I thought there should be some statement?