#include < iostream. h > class test{ private: int x;y; public: voicl f( int a,int b) { x = a;y = b; } int max( ) { return(x > y) ? x:y; } }; main( ) { test a; a. f( 1 ,3) ; cout << a. max( ) <&