this is the prompt: Take the number from
{number}
, and round it down to the nearest hundred. If it’s already a multiple of 100, return it as is. If the number is below 100 but greater than 0, round it down to the nearest ten instead of rounding to zero (for example, if the number is 34, just round it to 30). If the number is 0, return 0. Format numbers with commas if they are 1,000 or greater. Return only the formatted number, nothing else.