I have the following example code:
int pay = 80; int bonus = 65; System.out.println(pay + bonus + \" \" + bonus + pay);
could someone please ex
before " ",pay and bonus as integer, added result is 145. after " ",bonus and pay as String,result is "6580"