This is very simillar to this question but we're not even given the number of bits that make up the network address.
How do you tell that IPs 192 . 168 . 0 . 9 and IP 198 . 162 . 0 . 2 are on different networks?
I'll admit this is a homework question (which by the way, isn't forbidden on SO) and I found out how to do this. Class A ip addresses are on the same network if the first 3 digits are identical. Class B ip addresses are the same if the first 6 digits are identical. Class C ip addresses are on the same network if the first 9 digits are identical. Is this correct?
For example 192.168.000.009 and 192.168.000.002 are on the same network but 192.168.001.009 and 192.168.000.002 are on different networks?