fork download
  1.  
  2. import java.util.*;
  3. import java.lang.*;
  4. import java.io.*;
  5. import java.util.Scanner;
  6.  
  7. class Main
  8. {
  9. public static void main (String[] args) throws java.lang.Exception
  10. {
  11. Scanner i = new Scanner(System.in);
  12. int n = i.nextInt();
  13. int r = i.nextInt();
  14. double result = Math.ceil(r / (n * 1.44));
  15. System.out.println(String.format("%.0f", result));
  16. }
  17. }
Success #stdin #stdout 0.12s 35544KB
stdin
4 70
stdout
13