Advertisement
Guest User

Untitled

a guest
Oct 7th, 2015
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. import java.io.BufferedReader;
  2. import java.io.InputStreamReader;
  3.  
  4. public class warizan {
  5. public static void main(String[] args) throws Exception {
  6.  
  7. java.util.Scanner sc = new java.util.Scanner(System.in);
  8. int a;
  9. int b;
  10. a= sc.nextInt();
  11. b= sc.nextInt();
  12. System.out.println(a/b);
  13.  
  14. BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
  15. String line = br.readLine();
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement