AxB (10998)

Created:

Baekjoon No.10998
간단한 곱셈
이전 문제에서 부호만 바꾸면 된다.

Bash

Bash
1
2
read a b
echo $((a * b))

C

C
1
2
3
4
5
6
7
8
#include <stdio.h>

int main(void) {
	int a, b;
	scanf("%d %d", &a, &b);
	printf("%d", a*b);
	return 0;
}

Node.js

JavaScript
1
2
let [a, b] = require("fs").readFileSync(0).toString().trim().split(" ").map(Number);
console.log(a * b);

PHP

PHP
1
2
3
4
<?php
	fscanf(STDIN, "%d %d", $a, $b);
	echo $a * $b;
?>

Python3

Python
1
2
a, b = map(int, input().split())
print(a*b)

Ruby

Ruby
1
2
a, b = gets.chomp.split().map {|i| i.to_i}
puts a*b