i dont understand how i can ddo this, but i understand all process
public class Solution {
public static void main(String[] args) {
}
interface CanMove{
Double spd = 1.1;
default Double speed() {
return spd;
}
}
interface CanFly extends CanMove {
public void speed(double x){
}
}
}