Main.hx 93 B

12345
  1. class Main {
  2. static function main() {
  3. ["1", "2", "3"].map(Std.parseInt).joint("\n");
  4. }
  5. }