if you start by dividing the number by two youll know what number the primes must lie below.
you could use brute force on the problem with a calculator and a list of known prime numbers less than 2344/2.
http://www.utm.edu/research/primes/lists/small/1000.txt this is a list of the first 1000 primes. you can use a calculator and start with the ones just less than 1172. if you find its divisible by 3 (add the digits to create a new number, then add the digits until you get a number you know is divisible by 3, like if you had 1234 youd add 1+2+3+4=10 which you know is not divisible by 3. if it is divisible by 3, then the result of dividing by 3 is also a factor. you can then factor the smaller number)
although kinda tedious, direct testing is the best way for smaller numbers.
start with 2,3,5. that will be easier. youll get to a point where youll have either a 2,3,5 or 7 and
2343 is divisible by 3. 2+3+4+3=12 1+2=3. ! so take 3 out.
2343/3 and 3 are factors. since three is prime, throw it in the prime factors.
so you have 781. you can cross check to see if 781 is prime with that link i gave. 781 isn't in that list, so begin by dividing by 7, since you can see its not a 2, 3, or 5. go up from there dividing with your calculator by prime numbers. if you get one, put the number in the prime factors list and continue.
i don't want to spoil the fun... but there are "factorizers" (programs to factorize or prime factor numbers) with the original or my personal favorite being the one that made the name. ill tell you it only finds 3, so from there, its up to you. the limit on the program i use is like 2.1 billion. after that, your on your own :p