Create 1868.cpp

pull/45/head
Kirigaya Kazuto 2016-10-24 17:02:20 +08:00 committed by GitHub
parent e8d029c4c3
commit 9aeb76975f
1 changed files with 10 additions and 0 deletions

10
QUSTOJ/1868.cpp Normal file
View File

@ -0,0 +1,10 @@
#include <iostream>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
cout<<a*b<<endl;
return 0;
}