mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-10 16:20:27 +08:00
14 lines
166 B
C++
14 lines
166 B
C++
#include <iostream>
|
|
using namespace std;
|
|
int main(){
|
|
int n,i;
|
|
cin >>n;
|
|
for(i=1;i<=n;i++){
|
|
if(i%4==0 && i%5==0 && i%8!=0){
|
|
cout <<i<<" ";
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|