The 7 components found in a computer tower are the following:
Power supply unit
Central processing unit
Hard disk drive
Ram modules
Motherboard
Video card
Sound card
U got picture of the question?
Answer:
private ip addresses
Explanation:
A private ip address is assigned to each device on a network, allowing devices on the same network to communicate with each other without using any public ip addresses.
import math
num1 = int(input("Enter a number: "))
num2 = int(input("Enter a number: "))
print(math.gcd(num1, num2))
The gcd() - greatest common divisor function, which is part of the math module works perfectly in this situation.