import java.util.*;	
import java.io.*;	
	
public class B {	
	// main(): application entry point 	
	public static void main(String[] args) throws IOException {	
		// get filename 	
		Scanner stdin = new Scanner(System.in);	
		System.out.print("Filename: ");	
		String s = stdin.nextLine();	
	
		// set up file stream for processing 	
		Scanner fileIn = null;	
	
		try {	
			File file = new File(s);	
			fileIn = new Scanner(file);	
		}	
		catch (FileNotFoundException e) {	
			System.err.println(s + ": cannot be opened for reading");	
			System.exit(0);	
		}	
	
		// extract values and compute quotient 	
		int numerator = fileIn.nextInt();	
		int denominator = fileIn.nextInt();	
	
		int quotient = numerator / denominator;	
		System.out.println();	
		System.out.println(numerator + " / " + denominator + " = "	
				+ quotient);	
	
		return;	
	} 	
}	
