单项选择题

下述程序的输出结果是______。
#include<stdio.h>
main()
enum teamJack,Andy,Sam=10,Bob=Sam+2,Tom;
printf("%d,%d",Andy,Tom);

A.2,13
B.1,0
C.1,13
D.1,12