#include <iostream>
using namespace std;
class Sensor {
public:
int id{0};
// your code here: define constructor taking int id and printing "Sensor <id> initialized"
Sensor(int x)
{
id = x;
cout<<"Sensor "<<id<<" initialized"<<endl;
}
};
int main() {
Sensor s(101);
return 0;
}