#include<stdio.h> void main() { int a,b,c,d; clrscr(); printf("Input 2 number:"); scanf("%d%d",&a,&b); c=fact(a); d=fact(b); printf("%d%d",c,d); }