Guest User

Untitled

a guest
Jan 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import java.math.*;
  2.  
  3. public class A
  4. {
  5. public static void main(String[] args)
  6. {
  7. BigInteger three = new BigInteger("3");
  8. BigInteger big = new BigInteger("7687671234123412431234");
  9.  
  10. BigInteger c = big.divide(three);
  11.  
  12. System.out.println(c.toString());
  13. }
  14. }
Add Comment
Please, Sign In to add comment