[step:Set up induction on $s + t$ and handle the base cases]We prove by induction on $s + t \geq 4$ the statement: for all $s, t \geq 2$, the Ramsey number $R(s, t)$ exists — i.e. there is a least positive integer $N$ such that every 2-edge-colouring $c : E(K_N) \to \{\text{red}, \text{blue}\}$ contains a red $K_s$ or a blue $K_t$ — and moreover $R(s, t) \leq R(s-1, t) + R(s, t-1)$ for $s, t \geq 3$.
**Base case $s = 2$** (any $t \geq 2$). We claim $R(2, t) = t$. First, $R(2, t) \leq t$: in any 2-colouring of $E(K_t)$, either some edge is red — yielding a red $K_2$ — or every edge is blue, in which case $K_t$ itself is a blue $K_t$. Second, $R(2, t) \geq t$: the colouring of $K_{t-1}$ assigning every edge blue contains no red $K_2$ (no edge is red) and no blue $K_t$ (there are only $t - 1$ vertices). Hence $R(2, t) = t$ exists.
**Base case $t = 2$** (any $s \geq 2$). By the symmetry $R(s, t) = R(t, s)$ (swap the roles of red and blue), $R(s, 2) = R(2, s) = s$.
In particular, these base cases cover all pairs with $s + t = 4$, namely $(s, t) = (2, 2)$, and all pairs with $\min(s, t) = 2$.[/step]