Class Rational { private int a; private int b; public Rational(int m, int n){ this.a = m; this.b = n; if (a/b == 1){ return 1; } }}