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