PRODUCT - Tích 2 số

View as PDF

Submit solution

Points: 100.00
Time limit: 1.0s
Memory limit: 100M
Input: stdin
Output: stdout

Author:
Problem type
Allowed languages
C, C++, GAS64, Pascal, Perl, PHP, Python, Sed, TCL, Text

Cho hai số nguyên ~a~ và ~b~. Hãy cho biết tích của ~a~ và ~b~ là số dương, số âm hay số 0.

Dữ liệu

  • Gồm một dòng chứa hai số nguyên ~a~ và ~b~ ~(−10≤a,b≤10)~

Kết quả

  • Nếu tích của ~a~ và ~b~ dương, hãy in ra ~1~. Nếu tích của ~a~ và ~b~ âm, hãy in ra ~-1~. Ngượclại,hãy in ra 0.

Ví dụ

Sample Input 1
6 3
Sample Output 1
1
Sample Input 2
0 0
Sample Output 2
0

Nguồn: Free Contest


Comments

Please read the guidelines before commenting.



  • 0
    anhtuan2007  commented on Sept. 24, 2022, 4:28 a.m.

    iloveame