#include <iostream>
using namespace std;
class Sensor {
public:
// your code here: implement int read() to return 100
int read() { // write the read member function
return 100; // return 100;
}
};
int main() {
Sensor s;
cout << "Sensor reading: " << s.read();
return 0;
}