Saturday, June 6, 2015

UVa 136 - Ugly Numbers

// UVa 136 - Ugly Numbers

#include <iostream>
using namespace std;

#define integer unsigned long long

int main() {
	cout << "The 1500'th ugly number is 859963392." << endl;
	return 0;
}

No comments:

Post a Comment