#include int main () { int i; i=1,2,3; printf("%d\n", i); i=(1,2,3); printf("%d\n", i); return 0; }