export default function goodbye(a: number): string {
  if (a === 1) {
    return 'Earth'
  }
  return 'World';
}
