সোমবার, ২১ মে, ২০১৮

UVa 12463 - Little Nephew

#include<iostream>
using namespace std;
int main()
{
    long long a,b,c,d,e;
    while(cin>>a>>b>>c>>d>>e && a && b && c && d &&e)
    {
        cout<<a*b*c*d*d*e*e<<endl;
    }
return 0;
}

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

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

Factory Pattern

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