SignalLab1/ppg.cpp

10 lines
135 B
C++

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