fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static int gcd(int n, int m)
  11. {
  12. if (m > n) return gcd(m,n);
  13. if (m==0) return n;
  14. return gcd(m,n%m);
  15. }
  16.  
  17. public static boolean isVprime(int m, int n)
  18. {
  19. return (gcd(n,m)==1);
  20. }
  21.  
  22. public static void main (String[] args) throws java.lang.Exception
  23. {
  24. System.out.println(isVprime(12,16));
  25. System.out.println(isVprime(3,7));
  26. }
  27. }
Success #stdin #stdout 0.04s 2184192KB
stdin
Standard input is empty
stdout
false
true