Hello everyone who is partcipate in the Fighting For 2014 Contest, I'm MatRush. This is the simplest problem today, no algorithm knowledge needed, But it's also the hardest problem today if you are not on the right track, so please do not waste your time here if you have no idea with it after many tries.
I was writing some C++ code one day, and I typed this fragment:
x = y * 2 + 1;
But unfortunately I had a bug. When y was 10, I wanted x to be 19. To fix this, I changed the '+' to a '-'.
After fixing this bug, I wrote some more code:
x = y * 2245 + (y * 2 - 7);
I had a another bug. When y was 79, I wanted x to be 8841. What single character can I change to make this work? Remember your first answer as "pos,new char". For example, the answer to the first bug would be "10,-": we're changing the 10th (start from 0th) character ('+') to '-'.
Several days later.
I can't believe I made the same mistake again! Still this childish and straightforward code.
x = y * 2245 + (y * 2 - 7);
This time I had an another different bug. When y was 79, I wanted x to be 13186. What single character can I change to make this work? Remember your second answer as "pos,new char". For example, the answer to the first bug would be "10,-": we're changing the 10th (start from 0th) character ('+') to '-'.
Please submit your two answer in separate lines (two lines).
Sorry, no sample output.
But I give you a wrong output for sample format. Here it is.
1,-
2,+