Solve the following system for $ x,y \in \mathbb{R} $: \begin{align} x \lfloor y \rfloor & = 7, \\ y \lfloor x \rfloor & = 8. \end{align}
It could be reducing to one variable, but it is not that simple.
Another idea is substitution, but it didnt lead me anywhere.
This was taken from a competition, and it’s tricky.
From what I noticed, systems with two or more variables involving "greatest integer" function are rarely seen, probably too difficult to analyze...
This was obtained with the help of Wolfram Alpha: (I swapped places of 7 and 8 by mistake, so it is not exactly the same system; anyway, the answer should not rely on software tools, of course)

Reformulate: Let $a,b \in [0,1)$ and $m,n \in \mathbb Z$. Solve $$(m+a)n = 7\\ (n+b)m = 8$$ Rearrangement gives $$nm = 8 - bm = 7 - an$$ The product on the left is an integer so we already know that $bm, an\in \mathbb Z$ or in other words $$a = \frac kn; \quad b = \frac lm$$ With $k,l\in\mathbb Z$. Substituting this back gives us $$mn = 8-l = 7-k$$ Eliminating $l = k + 1$ so we get a solution by solving the integer equation $$mn = 7-k; \quad k < \min(n, m-1)$$ Chose $k=1,m=3,n=2$ and get $l=2$ and finally $$x = m + a = m + \frac kn = 3 + \frac12 = \frac 72\\ y = n + b = n + \frac lm = 2 + \frac 23 = \frac 83$$
Thanks to @Berrick Fillmore for the full set of solutions obtained from the last system:
$$\left\{ \left( 7,\frac{8}{7} \right), \left( \frac{7}{2},\frac{8}{3} \right), \left( - \frac{7}{8},-8 \right), \left( - \frac{7}{4},-4 \right), \left( - \frac{7}{3},- \frac{8}{3} \right), \left( - \frac{7}{2},-2 \right) \right\}$$