#import <Foundation/Foundation.h>

int main() {
	NSAutoreleasePool *pool = [NSAutoreleasePool new];
	NSNumber *comoInt = [NSNumber numberWithInt:42];
    float comoFloat = [comoInt floatValue];
    NSLog(@"%.2f", comoFloat);
    NSString *comoString = [comoInt stringValue];
    NSLog(@"%@", comoString);
	[pool drain];
	return 0;
}

