মঙ্গলবার, ৩০ আগস্ট, ২০১৬

UVA 10071 - Back to High School Physics

#include<stdio.h>
#include<math.h>
main()
{
    long long int n,m;

    while(scanf("%lld%lld",&n,&m)!=EOF)
    {
        printf("%lld\n",2*n*m);
    }

}

কোন মন্তব্য নেই:

একটি মন্তব্য পোস্ট করুন

Factory Pattern

Factory Method  is a creational design pattern that provides an interface for creating objects in a superclass but allows subclasses to alte...