#include <stdio.h>
/*
* This program has the purpose of returning a 0 value, indicating to the shell that the program was
* executed successfully.
*/
int main(){
return 0;
}