Program to find Angle of Triangle in QBASIC
CLS
INPUT "Angle of Triangle"; a, b, c
d = a + b + c / 180
PRINT "Angle ="; d
END