//op01.c
#include <stdio.h>

int main(void) {
	// your code goes here
	int i;
	printf("a value of[i=20] is %d\n",i=20);
	return 0;
}
