#include <cstdio>

/* This is example:
 
#include "robot.h"
using namespace Robot

*/

using namespace std;

int main(){
    
	while (1){
		
		int position;
	    position = //Ex: return_position_robot(); 
		while (position > 0){
			//Ex: move_robot(2);  //Would move the robot on the screen
			position = //Ex: return_position_robot();
		}
	}
	return 0;
}
