void main() { var a=10; print(a.runtimeType); int b=25; print('The Value of b is ${b}'); double x=25.3; print(x.runtimeType); String y='Joes'; print(y.runtimeType); dynamic z; z=10; print('The Value of Z ${z} type : ${z.runtimeType}'); z=25.5; print('The Value of Z ${z} type : ${z.runtimeType}'); }