import java.util.Scanner; public class HelloWorld { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int k = sc.nextInt(); int t = sc.nextInt(); if (n < 0) {n = -n;} System.out.println((long)(k * t) >= n ? "Yes":"No"); } }