t1.txt -------- x=3; y=5; sum=x*10+y; t2.txt -------- a=1; b=2; t3.txt -------- a = 1 ; b = 2 ; sum=a+b; t4.txt -------- a=1; b=2; sum=a+b; sum = sum * 10 ; a=a*10; b=b*10; sum=a+b; t5.txt -------- a=0; b=34285285+205205471205; sum=a*b+a+7; t6.txt -------- a=a+1; sum=a+3; t7.txt -------- =6; a; b=; b a=1+1; c=1 1 ; d = -5; e=+d; f=1*e+4; t8.txt -------- thiscourse = 16; nextcourse = thiscourse + 1; dataStructures=17; algorithms = 21; program=dataStructures+algorithms; Java=13; nextSemThisCourse = Java; Compilation=40; Execution=60; total = Compilation+Execution; a=100; something=10; something=something+5; forall = 1; aplus = 100 + something; grade=aplus*forall;