Build a React component that generates a table of numbers given the rows and columns.
Requirements:
- Render two number inputs: one for rows and one for columns.
- When values are entered, display a table with the specified number of rows and columns.
- Each cell should display its row and column index (e.g., "R1C1").
- Focus on functionality over styling.
- The component should work out-of-the-box in a live React preview (e.g., CodeSandbox/Sandpack).