Are You Smarter than a 3rd Grader?

 

Basic Version:

Write a program that takes in two numbers.  It divides the first number by the second number using two methods:

Method 1 (The 3rd grade method):  Yields only whole numbers and often has a remainder.  If you take 5 divided by 2 using method 1, the result would be 2R1 (2 goes into 5 twice, with a remainder of 1). 

Method 2 (The adult method): Yields a decimal number.  5 divided by 2 yields 2.5.

Your input should be the two numbers to crunch.  Your output should show the result of each method listed above.