#include <iostream>using namespace std;int fact(int n) { int m = 1; for(int i = 1;i<=n;i++){ m*=i; } cout << m <&