function readInput(day: string): string {
return Deno.readTextFileSync('./inputs/' + day + '.txt').trim()
}
export { readInput };