Sorry! Posting Assignment is allowed only for commercial accounts.
import mathn = int(input("enter the number:"))result = math.factorial(n)print("factorial of",n,"is",result)
#include <stdio.h>void main(){ int a= 10; int b= b++ + 10; printf("%d,%d",a,b); return 0;}