fork download
  1. function easy(){
  2. var firstPhrase = "В этом предложении ровно ";
  3. var secondPhrase = " символов";
  4. var sentenceLength = firstPhrase.length+secondPhrase.length+2;
  5. var sentence = firstPhrase + sentenceLength + secondPhrase;
  6. print(sentence);
  7. print(sentence.length);
  8. }
  9.  
  10. easy();
Success #stdin #stdout 0.01s 29552KB
stdin
Standard input is empty
stdout
В этом предложении ровно 36 символов
36