#include <iostream>
using namespace std;

class Sensor {
public:
     
     int read()
     {
      int read_sensor = 100;
      return read_sensor;
     }
   
};

int main() {
   Sensor s;
   cout << "Sensor reading: " << s.read();
   return 0;
}
Upvote
Downvote
Loading...

Input

Expected Output

Sensor reading: 100