Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #include<cstdio>
  2. #include<cmath>
  3. using namespace std;
  4.  
  5. int mat[100][100],riks[100][100],a,b,e,f;
  6.  
  7. int main()
  8. {
  9. scanf("%d %d",&a,&b);
  10. for(int c=0; c<a; c++)
  11. {
  12. for(int d=0; d<b; d++)
  13. scanf("%d",&mat[c][d]);
  14. }
  15. scanf("%d %d",&e,&f);
  16. if(e==b)
  17. {
  18. for(int g=0; g<e; g++)
  19. {
  20. for(int h=0; h<f; h++)
  21. scanf("%d",&riks[g][h]);
  22. }
  23. }
  24. else
  25. for(i=0, )
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement