Refer to the method f: Public int f( int k, int n ) { if( n == k ) return k; else if( n > k ) return f( k, n - k ); else return f( k - n, n ); } What value is returned by the call f( 6, 8 )?