/in/foo.cc: In function 'int main()':
/in/foo.cc:8:7: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
    8 |   if(a>b&a==b){
      |      ~^~
/in/foo.cc:10:11: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
   10 |     if(i%a==0&i%b==0){cout<<i<<endl;break;}
      |        ~~~^~~
/in/foo.cc:15:11: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
   15 |     if(i%a==0&i%b==0){cout<<i<<endl;break;}
      |        ~~~^~~
/in/foo.cc:22:1: error: expected '}' at end of input
   22 | }
      | ^
/in/foo.cc:5:1: note: to match this '{'
    5 | {
      | ^