how to convert the window_get_size() to two ints/floats

Godot Version

4.3

Question

How the title said I want to convert the DisplayServer.window_get_size variable into two ints or floats btw i am using gdscript

	var x = DisplayServer.window_get_size().x
	var y = DisplayServer.window_get_size().y
	print("x: " + str(x) + " ; y: " + str(y))