/in/foo.cc: In function 'int main()':
/in/foo.cc:7:10: warning: right operand of comma operator has no effect [-Wunused-value]
  cin>>a,b;
          ^
/in/foo.cc:14:32: warning: format '%lld' expects argument of type 'long long int', but argument 2 has type 'long long int*' [-Wformat=]
    printf("%lld,%lld",&c," ",&d);
                                ^
/in/foo.cc:14:32: warning: format '%lld' expects argument of type 'long long int', but argument 3 has type 'const char*' [-Wformat=]
/in/foo.cc:14:32: warning: too many arguments for format [-Wformat-extra-args]
/in/foo.cc:8:3: warning: 'b' is used uninitialized in this function [-Wuninitialized]
  c=b;
  ~^~