#include<stdio.h> void main() { int i=0; for (;i<100;i++) { if(i%3==2&&i%5==3&&i%7==4) break; } printf("%d",i); }