fork download
  1. object Main extends App {
  2. // your code goes here
  3. var count = 2
  4. for (_ <- 1 to 10) count = (count / 2) * 6
  5. println("answer : " + count)
  6. }
Success #stdin #stdout 0.39s 382016KB
stdin
Standard input is empty
stdout
answer : 118098