Guest User

Untitled

a guest
Jun 17th, 2018
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package com.javarush.task.task03.task0306;
  2.  
  3. /*
  4. Головоломка со скобками
  5. */
  6.  
  7. public class Solution {
  8. public static void main(String[] args) {
  9. System.out.println(1 + 2 * (3 + 4) * (5 + 6) * (7 + 8) * (9 + 10) * (11 + 12) * (13 + 14) + 15);
  10. }
  11. }
Add Comment
Please, Sign In to add comment