#include <stdio.h>

int main(void) {
	// your code goes here
	int i,j;
	for(i=0;i<=44;i++){
		for(j=0;j<=44;j++){
			printf("45*%d+%d=%d\n",i,j,45*i+j);
		}
	}
	return 0;
}
