View Code of Problem 1

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

Double click to view unformatted code.


Back to problem 1