#include #include #include using namespace std; void gaseste(int a[][100],int n,int x,int y) { if(a[x][y]>78) gaseste(a,n,x,y-1); else if(a[x][y]<78) gaseste(a,n,x+1,y); else { cout<>n; for(i=0; i>a[i][j]; gaseste(a,n-1,0,n-1); f.close(); return 0; }