fork(3) download
  1. <?php
  2.  
  3. # your code goes here
  4. print("Кофе-машина");
  5.  
  6. $moneyAmount = 1200;
  7.  
  8. $cappucinoPrice = 150;
  9.  
  10. $canBuySomething = false;
  11.  
  12. if($moneyAmount >= $cappucinoPrice) {
  13. print("Вы можете купить капучино");
  14. $canBuySomething = true;
  15. }
Success #stdin #stdout 0.02s 24568KB
stdin
Standard input is empty
stdout
Кофе-машинаВы можете купить капучино