Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public class Main{
  2. public static void main (String... args){
  3. int c = 20|30|1000;
  4. int d = 20|30|20;
  5. int e = 1000|20|1;
  6. System.out.println(c+" "+d+" "+e);
  7. }
  8. }
  9.  
  10. 1022 30 1021
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement