#include <stdio.h> int main( void ) { int a=9, b=9; int g = a*b; printf( "%d,%d,%d.\n", a,b,g ); return 0; }