SOLUTION OF URI 1959 URI SOLUTIONS // 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; } Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook Related Posts:SOLUTION OF URI 1151 // 1151 (Mahmud_Jamil) BRUR // Easy Fibonacci #include <stdio.h>int main(){ int x,y, a=0,b=1,c=… Read MoreSOLUTION OF URI 1154 // 1154 (Mahmud_Jamil) BRUR // Ages #include <stdio.h>int main(){ int a,b=0; d… Read MoreSOLUTION OF URI 1145 // 1145 (Mahmud_Jamil) BRUR // Logical Sequence 2 #include <stdio.h>int main(){ int X,Y,z,a,b=0… Read MoreSOLUTION OF URI 1150 // 1150 (Mahmud_Jamil) BRUR // Exceeding Z #include <stdio.h>int main(){ int a,b,c=0,x,z;&… Read MoreSOLUTION OF URI 1156 // 1156 (Mahmud_Jamil) BRUR // S Sequence II #include <stdio.h>int main(){ double a,b=1,c,… Read More