fork download
  1. a = 8;
  2. b = 8;
  3. if(a >= 8 && a == b && !b){
  4. print "正常処理";
  5. } else {
  6. print "異常処理";
  7. }
  8.  
Success #stdin #stdout 0.01s 5508KB
stdin
Standard input is empty
stdout
異常処理