← Back to List

10998번: A×B ↗

Solutions

C++14
73 B | 73 chars
#include <iostream>
int a,b;
int main(){
std::cin>>a>>b;std::cout<<a*b;
}