Saturday, July 15, 2017

URI problem 1959 solution in C | (Regular Simple Polygons)

#include<stdio.h>

int main()
{
    long long int a,b;
    while(scanf("%lld",&a)!=EOF){
        scanf("%lld",&b);
        printf("%lld\n",a*b);
    }
    return 0;
}

No comments:

Post a Comment