Anonymous - 2014-07-06

int main(void)
{
unsigned long long a,b;
a=34ULL;//suffix LL warning
b=2;
return (int)(b*a);
}
the suffix is ULL,not LL and it is perfectly ok
also long long is a normal type nowadays.