Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- int main()
- {
- int m,n;
- int map[n+1][m+1];
- scanf("%d\n", &n);
- scanf("%d\n", &m);
- for(int i = 1; i <= n ; i++){
- for(int j = 1; j <= m ; j++)
- {
- scanf("%d", &map[i][j]);
- }
- }
- printf("%d\n", map[n+1][m+1]);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment