Zadatak-2

#include <iostream>

using namespace std;

int main()
{
int a,b,P;
cin>>a;
cin>>b;
P=a*b;
cout<<P;
return 0;
}