Red line in <<< when using visual studio 2022

I wrote code like

int main(void){
    helloCUDA<<<1,10>>>();  // print hello world
    return 0;
}

in main.cu.

but there was a red line under <<<, and a space occurred between << < and so on. Can you tell me how to fix this?