#include<stdio.h> int main() {int a,b; for(a=1,b=1;a<=50;a++) { if(b%2==1) continue; b+=5; } printf("a=%d,b=%d\n",a,b); return 0; }