diff --git a/exercises/if/if1.rs b/exercises/if/if1.rs
index 636e6ce..fdc7e3d 100644
--- a/exercises/if/if1.rs
+++ b/exercises/if/if1.rs
@@ -7,6 +7,7 @@ pub fn bigger(a: i32, b: i32) -> i32 {
     // - another function call
     // - additional variables
     // Scroll down for hints.
+    if a > b { a } else { b }
 }
 
 // Don't mind this for now :)