#include <iostream> #include <stdio.h> #include <math.h> using namespace std; int main() { int Isfun(int n); int i,n,k; cin>>n; for(i=2;i<n;i++){ k=i%10; if((Isfun(i)==1)&&(k==1)){ printf("%d ",i); } ...