#include using namespace std;void main(){ int i,j,k,a=0; for(i=1;i<=4;i++) { for(j=1;j<=4;j++) { for(k=1;k<=4;k++) { if(i!=j&&i!=k&&j!=k) {a++; cout< } } } }cout< }