#include <stdio.h>
int main()
{
int CurrentFloor = 0;
// TODO: wrap the next lines in the specified for loop
printf("I'm currently at floor %d\n", CurrentFloor); // \n means newline
}