If I divide 100/40 in python how can I get value of 5/2 without python performing true division or decimal division Eg:
- If I divide 100 by 20 i need value of 5/1 in python not simply 5 similarly for 100 by 40 i need to get a value of 5/2 not 2.5 and for 100/60 value 5/3 how can i get that in python.