Quick actions

cmd+k|ctrl+k

Navigation

Languages

№157

Snippet info

Language

Cpp

Visibility

public

Author

nxnxngh

Created

2018-10-28T09:39:37Z

Updated

2018-10-28T14:28:25Z

#include <iostream>
using namespace std;

int main() {
    for (int a = 1; a < 5001; a++)
    {
        if (a%39 == 0)
        {
            cout<<a<<endl;
        }
    }
    return 0;
}
INFO