#!/usr/bin/env swift; import Foundation import Utils // Begin Main let x:Int = Int(CommandLine.arguments[1]) ?? 0 print("Start...") if x > 1000 { print("Greater than 1000") } else if x > 100 { print("Greater than 100 but less than or equal to 1000") } else { print("Less than or equal to 100") } print("Finish...") exit(EXIT_SUCCESS)