#include<stdio.h> int main() { float a; float b; scanf("%f", &a); b = a*0.7; printf(“b = %f ”, b); return 0;
}