#include <iostream>
using namespace std;
int main () {
int n=6;
int dest=2;
cout<<"What floor are you on?"<<endl;
cin>>n;
cout<<"What floor are you going to"?<<endl;
cin>>dest;
do {
if (n!=2) {
n--;
cout<<"Now on 5"<<endl;
}
else cout<<"We are here!"<<endl;
}
while (n!=dest);