fork download
  1. print (1);
  2. print (2);
  3. if (1>2) {
  4. print ("The first is big.");
  5. }
  6. else{
  7. print ("The first is not big.");
  8. }
Success #stdin #stdout 0.01s 4984KB
stdin
Standard input is empty
stdout
1
2
The first is not big.