fork download
  1. <?php
  2.  
  3.  
  4. $dollars = 100;
  5. $exchangeRate = 67;
  6. $roubles = $dollars * $exchangeRate;
  7.  
  8. echo "$dollars долларов можно обменять на $roubles рублей";
  9. ?>
  10.  
  11.  
  12. // your code goes here
Success #stdin #stdout 0.03s 52432KB
stdin
Standard input is empty
stdout
100 долларов можно обменять на 6700 рублей

// your code goes here