#include <iostream> using namespace std; void main() { for(int i=-20; i<20; i++) { if(i==0) continue; cout << i << " "; } cout << endl ; }
#include <iostream> using namespace std; void main() {
for(int i=-20; i<20; i++) { if(i==0) continue; cout << i << " "; } cout << endl ;
for(int i=-20; i<20; i++) {
if(i==0) continue; cout << i << " ";
}
cout << endl ;