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