//C++
#include <iostream>
int main(){
//Print "PPG algorithm" to terminal
std::cout << "PPG algorithm"<< std::endl;
return 0;
}