blob: 1d50ec384c23afc97f13628045067f70c4a61185 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#include <iostream>
#include <string>
using namespace std;
int main()
{
int x = 5;
cout << x << "! = " << x * (x - x / x) * (x - x / x - x / x) * (x / x + x / x) * (x / x) << endl;
}
|