#import <Foundation/Foundation.h>
@interface SecondTask : NSObject
@property (nonatomic, strong) NSMutableArray *firstArray;
@property (nonatomic, strong) NSMutableArray *secondArray;
@property (nonatomic, strong) NSNumber *maximumValue;
@property int indexOfMaximumValue;
@property (nonatomic, strong) NSNumber *previousMaximumValue;
@property int indexOfPreviousMaximumValue;
- (void)searchForMaximumValue;
@end