Progression.cpp: In function 'void solution()':
Progression.cpp:67:17: error: redeclaration of 'int l'
67 | int l, r, s, c;
| ^
Progression.cpp:62:17: note: 'int l' previously declared here
62 | int l, r, s, c;
| ^
Progression.cpp:67:20: error: redeclaration of 'int r'
67 | int l, r, s, c;
| ^
Progression.cpp:62:20: note: 'int r' previously declared here
62 | int l, r, s, c;
| ^
Progression.cpp:67:23: error: redeclaration of 'int s'
67 | int l, r, s, c;
| ^
Progression.cpp:62:23: note: 'int s' previously declared here
62 | int l, r, s, c;
| ^
Progression.cpp:67:26: error: redeclaration of 'int c'
67 | int l, r, s, c;
| ^
Progression.cpp:62:26: note: 'int c' previously declared here
62 | int l, r, s, c;
| ^
Progression.cpp:72:17: error: redeclaration of 'int l'
72 | int l, r;
| ^
Progression.cpp:62:17: note: 'int l' previously declared here
62 | int l, r, s, c;
| ^
Progression.cpp:72:20: error: redeclaration of 'int r'
72 | int l, r;
| ^
Progression.cpp:62:20: note: 'int r' previously declared here
62 | int l, r, s, c;
| ^