blob: 77780c56ea20f0058933565786b7474723e677a6 (
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;
}
|