#İnclude <iOStream>
Using namespace std;
İnt main(){
İnt index = 1;
İnt kullanicisayi;
Cout << "bir sayi giriniz" << endl;
Cin >> kullanicisayi;
While (index <= kullanicisayi) {
İf (index %7 == 0); {
Cout << index;
}
İndex++;
}
Cout << endl;
Return 0;
}