concatenate ints with cons chars

So tell me how to upload it!

Size of code is not a problem, code could be as follows and I would still have the same problem.

int a = 10;
int b = 22;
int c = 34;

void setup(){
  Serial.begin(9600);
}

void loop(){
  Serial.print(",,");
  Serial.print(a);
  Serial.print("/");
  Serial.print(b);
  Serial.print("/");
  Serial.print(c);
  Serial.println(",");
}

And guess what first line is still messed up. After that remaining lines are fine. Same problem as I am having.
Why people get caught up in the size of the code and wanting to see all of it is beyond me some times.
Also the rest of the code works fine and as intended.