Help needed getting variables to display on TFT screen

Hi im sort of new to Arduino and "C", but iv coded before with a Lego EV3 on Small Basic,
so I got an Arduino Uno and a Tft screen and started to play around. The screen worked fine and as expected.
What im trying to do now is get numbers in the form of variables(Int and Byte) to show up on the TFT screen as readable numbers.
Heres my code:

#include <SPI.h>
#include <SD.h>
#include <TFT.h>

#define lcd_cs 10
#define dc 9
#define rst 8
int A = 50;
byte B = 50;

TFT LCD = TFT(lcd_cs, dc, rst);
void setup() {
pinMode(7,OUTPUT);
LCD.begin();
LCD.background(255,255,255);
LCD.stroke(255,000,000);
}

void loop() {
LCD.text("Test1",5,10);
LCD.text(A,5,20);
LCD.text(B,5,40);

}

Heres what that looks like:
https://drive.google.com/file/d/1muKkJssNHZzKXrzMK9j15nqTFNy_usgu/view?usp=sharing
(sorry its the only way I could work out to get an image)
If one of you genius know what the heck im doing wrong then please let me know,

Thanks, Josh573a

HI Josh537a
First Your Question is to general it is always better to show code, so people know how to approach the Problem