// calculate the area of the rectangle
#include <stdio.h>
int main(){
    float length ,width ;
    // printf("please enter your area length:\n");
    scanf("%f",&length);
    
    // printf("please enter your area width:\n");
    printf("length%f*%fwidth");
    // printf(area)
    return 0;
    
}