Unity is so complicated compared to delphi. In delphi you can just say:
Rectangle1.Position.Y := 0;
Rectangle1.Position.X := screen.Width - Rectangle1.Width;
This will simply change the position of the rectangle in the upper right corner of the screen. But there is so much about Unity to learn how to just do it, and I don’t know where to start. Can someone please simplify this for me? I just want to create an object in the upper right corner of the screen, both on smartphones and on PC.
I am using Unity2D
EDIT: this is the inspector of the object I want to create:

And this is the code that I use to create objects on the screen:
Instantiate(objectName, new Vector3(0, 0, 0), Quaternion.identity);
EDIT will be more clear: 
source
share