class Buggy int speed int power void Buggy(int v, int p) speed = v power = p return /class Buggy b = Buggy(100, 50) print b.speed print b.power