how can i check if two numbers are close to each other?

for example ‘53.00319’ and ‘53.002876160709036’ (these numbers cannot be rounded because of percision reasons!) these numbers are really close to each other and need to be checked if they are close to each other

if( Mathf.Approximately( a, b ) ) {

}