#include <stdio.h> int main () { enum weelday { sum, mou, tue, wed, thu, fri, sat} a,b,c; a = sum; b = mou; c = tue; printf("%d",b); return 0; }