/*
Name: Bilangan Genap Asli 1 samapi 100
Copyright: 2014
Author: Muhammad Afdan Rojabi
Date: 18/10/14 13:49
Description: IPB
*/
#include<stdio.h>
#include<conio.h>
int main( ) {
int i;
for (i=2;i<=100; i+=2){
printf("%d\t", i);
}
getch ( );
return 0;
}