1995: 【入门】2进制中的0和1

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:1 Solved:1

Description

请编程计算出,一个整数n(0<=n<=1,000,000)转换为2进制后有多少个0,有的多少个1。

Input

输入一个整数n。

Output

输出2个整数,用空格隔开,分别表示一个整数n中0和1的个数。

Sample Input Copy

13

Sample Output Copy

1 3