molecules.cpp: In function 'void Out(std::vector<int>)':
molecules.cpp:11:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
#define REP(i,a,b) for(ll i=a; i<b; i++)
molecules.cpp:20:30:
void Out(vector<int> x) {REP(i,0,x.size()) {cout<<x[i]<<" ";} cout<<endl;}
~~~~~~~~~~~~
molecules.cpp:20:26: note: in expansion of macro 'REP'
void Out(vector<int> x) {REP(i,0,x.size()) {cout<<x[i]<<" ";} cout<<endl;}
^~~
/tmp/ccatsoYQ.o: In function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'
/tmp/cclNpyPQ.o:molecules.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status