errorType / 10.py
Beuys's picture
Upload 47 files
e16247a verified
raw
history blame contribute delete
210 Bytes
male = int(input())
female = int(input())
total = male+female
ratio1 = male/total
ratio2 = female/total
print("The male students ratio is %.2f,the female students ratio is %.2f"%(ratio1*100, ratio2*100, total))