#include int main() { int i; int szorzat=1; i=1; while (i<=10) { szorzat*=i; ++i; } printf("A számok szorzata: %d\n", szorzat); }