int main() { long int l = 1; long l2 = 2; short int s = 3; short s2 = 4; int i = 5; char c = 6; return l + l2 + s + s2 + i + c; }