#include using namespace std; class Pixel { public: int x,y; }; int main() { Pixel p; p.x=100; p.y=50; cout << p.x << endl; }