#include <stdio.h> int main () { int power (int a) { int x = 1 ; while (a>0){ x=x*a ; a=a-1 ; } return x ; } printf ("%d", power(2)); }