#!/usr/local/bin/swift extension Int { var fizzbuzz:String { switch(self % 3, self % 5) { default: return String(self) } } } print(1.fizzbuzz)