/*Write a program that calculates and prints the product of the odd integers
  from 1 to 15 using for loop.*/
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();

  int a;
  long b=1;

     for(a=1;a<=15;a++)
	 {
	     if(a%2!=0)
		{
		cout<<a<<"*"<<b<<"="<<(a*b)<<"\n\n";
		b=a*b;
		}
	 }

     cout<<b;

getch();
}