Nothing because there is no input to U3 yet.
I have tried LTSpice only once many years ago. I practically don't know it.
Looking at your picture for example I don't know what V(n003) is.
Do the n003 is a standard net name everyone should know what it is.
I asked about U3 input because if it is read as 1 than U3 output should be 0 than forcing U4 output to be always 1 and in such case U4 can't work as half of flip-flop.
V denotes voltage, followed by the net name in brackets. No net name was defined, so LTSpice invented one: n003.
I understand how to use the built-ins.
I don't want to though, because they are Ideal parts. If I want to use Idealized versions of parts then I use CircuitJS, which is a million times nicer than LTSpice's hostile UI.
The point of using LTSpice is to get a real simulation, with the foibles of the actual parts (or at least, a close approximation created by studying the real life parts). Remember that while logic gates work with digital information, the semiconductors themselves exist in the analogue world.
The built-in gates are good enough for most applications. They can be made more realistic by filling out the fields shown by Jay_Diddy_B.
Failing that, post the models and symbols you've used, along with the .asc file, for those who don't want to download and install a huge library.
I've had a play.
If a pin on the gate is either connected directly to 0V or left unconnected, it is eliminated before the net list is generated and parsed to SPICE. If you want to remove V2, then R must be connected to 0V, via a pull-down resistor, to prevent it from being ignored. The unconnected pins can be hidden from the schematic, by unchecking mark unconnected pins, in options/control panel -> schematic/drafting options.
If the reference connection is left floating, it is automatically connected to 0V.
This circuit has a race condition, which stopped it from simulating. I managed to get it to work by slowing down A2, which ensures it always defaults to Q being low.

Bistable NAND.asc (1.64 kB - downloaded 15 times.)
EDIT:
Here's the net list from the above .asc file
A1 0 S 0 S 0 N001 0 0 AND vhigh=12 Rout=200 Tau=2u
A2 0 N001 0 _Q 0 Q 0 0 AND vhigh=12 Rout=200 Tau=2.1u
A3 0 R 0 R 0 N002 0 0 AND vhigh=12 Rout=200 Tau=2u
A4 0 Q 0 N002 0 _Q 0 0 AND vhigh=12 Rout=200 Tau=2u
V1 S 0 PULSE(0 12 1m 1u 1u 1m 0 1)
V2 R 0 PULSE(0 12 9m 1u 1u 1m 0 1)
.tran 10m
.backanno
.end
It shows that all unconnected pins are connected to node 0 which is 0V. LT's SPICE engine is clearly ignoring all pins connected to node 0.