jump.cpp:9:5: error: 'vector' does not name a type
9 | vector<ll> tp;
| ^~~~~~
jump.cpp: In constructor 'bigint::bigint(ll)':
jump.cpp:14:13: error: 'tp' was not declared in this scope; did you mean 'tm'?
14 | tp.push_back(x%base);
| ^~
| tm
jump.cpp: In function 'void print(bigint)':
jump.cpp:24:10: error: 'struct bigint' has no member named 'tp'
24 | if(a.tp.size()==0)
| ^~
jump.cpp:25:11: error: 'struct bigint' has no member named 'tp'
25 | a.tp.push_back(0);
| ^~
jump.cpp:26:14: error: 'struct bigint' has no member named 'tp'
26 | int sa=a.tp.size();
| ^~
jump.cpp:30:17: error: 'struct bigint' has no member named 'tp'
30 | cout<<a.tp[i];
| ^~
jump.cpp: In function 'bigint add(bigint, bigint)':
jump.cpp:37:14: error: 'struct bigint' has no member named 'tp'
37 | int sa=a.tp.size();
| ^~
jump.cpp:38:14: error: 'struct bigint' has no member named 'tp'
38 | int sb=b.tp.size();
| ^~
jump.cpp:43:23: error: 'struct bigint' has no member named 'tp'
43 | if(i<sa)cc+=a.tp[i];
| ^~
jump.cpp:44:23: error: 'struct bigint' has no member named 'tp'
44 | if(i<sb)cc+=b.tp[i];
| ^~
jump.cpp:45:11: error: 'struct bigint' has no member named 'tp'
45 | c.tp.push_back(cc%base);
| ^~
jump.cpp:48:13: error: 'struct bigint' has no member named 'tp'
48 | while(c.tp.size()>0 and c.tp.back()==0)c.tp.pop_back();
| ^~
jump.cpp:48:31: error: 'struct bigint' has no member named 'tp'
48 | while(c.tp.size()>0 and c.tp.back()==0)c.tp.pop_back();
| ^~
jump.cpp:48:46: error: 'struct bigint' has no member named 'tp'
48 | while(c.tp.size()>0 and c.tp.back()==0)c.tp.pop_back();
| ^~
jump.cpp:49:10: error: 'struct bigint' has no member named 'tp'
49 | if(c.tp.size()==0)c.tp.push_back(0);
| ^~
jump.cpp:49:25: error: 'struct bigint' has no member named 'tp'
49 | if(c.tp.size()==0)c.tp.push_back(0);
| ^~