#ifndef FUNCTION_H
#define FUNCTION_H

typedef struct
{
   int x;
   int y;
   int length;
   int width;
   int leftArea;
} Rect;
void area(Rect *r1, Rect *r2);

#endif
