vs2017正确程序报错,代码C2106

图片说明
程序:
#include
int main()
{
int a, b, c;

scanf("%d,%d,%d", &a, &b, &c);
if (a == b && b == c)
    printf("The three number is equal!!!");
else
    printf("The three number isn't equal!!!");

}

发生错误的代码在 consoleapplication1.c
这个程序没有错误
图片说明

确定vs2017里面有c的模板吗?不是c++环境,我这边没有反正。