Guest User

Untitled

a guest
Jul 15th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <p>< %
  2. int x = 42;
  3. int y = 13;
  4. out.println("x = 42; y = 13; x + y =");
  5. out.println(x + y);
  6. out.println("x - y =");
  7. out.println(x - y);
  8. out.println("x * y =");
  9. out.println(x * y);
  10. %></p>
Add Comment
Please, Sign In to add comment