Saturday, June 25, 2016

SOLUTION OF URI 1959


//    Solution of  1959 Regular Simple Polygons
//   (Mahmud_Jamil) BRUR






#include <stdio.h>
int main()
{
    long long int N, L, P;
    scanf("%lld%lld", &N, &L);
    P = N*L;
    printf("%lld\n", P);
    return 0;
}