#import <Foundation/Foundation.h>

    int main() {
    	NSAutoreleasePool *pool = [NSAutoreleasePool new];
    	NSDictionary *inventory = [NSDictionary dictionaryWithObjectsAndKeys:
                 [NSNumber numberWithInt:13], @"Mercedes-Benz SLK250",
                 [NSNumber numberWithInt:22], @"Mercedes-Benz E350",
                 [NSNumber numberWithInt:19], @"BMW M3 Coupe",
                 [NSNumber numberWithInt:16], @"BMW X6", nil];
    	NSLog(@"We currently have %ld models available", [inventory count]);
    	for (id key in inventory) {
    		NSLog(@"There are %@ %@'s in stock", [inventory objectForKey:key], key);
    	}
    	[pool drain];
    	return 0;
    }