/in/foo.c: In function 'main':
/in/foo.c:6:10: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'long long int *' [-Wformat=]
scanf("%d %d\n",&a,&b);
^
/in/foo.c:6:13: warning: format '%d' expects argument of type 'int *', but argument 3 has type 'long long int *' [-Wformat=]
scanf("%d %d\n",&a,&b);
^
/in/foo.c:7:10: warning: comparison of constant '10' with boolean expression is always true [-Wbool-compare]
if(-10<a<10)
^
/in/foo.c:7:8: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
if(-10<a<10)
~~~^~
/in/foo.c:11:10: warning: comparison of constant '10' with boolean expression is always true [-Wbool-compare]
if(-10<b<10)
^
/in/foo.c:11:8: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
if(-10<b<10)
~~~^~
/in/foo.c:15:11: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long long int' [-Wformat=]
printf("%d",a+b);
^