View Code of Problem 1

#include <bits/stdc++.h>
int main()
{
	int A = 0;
  	int B = 0;
  	int C = 0;
  	scanf("d%", &A );
  	scanf("d%", &B );
  	printf("d%", A);
  	printf(" ");
  	printf("d%", B);
  	printf("/n");
  	printf("d%", A+B);
  	return 0;
}
/*
Main.c:1:25: fatal error: bits/stdc++.h: No such file or directory
 #include <bits/stdc++.h>
                         ^
compilation terminated.
*/

Double click to view unformatted code.


Back to problem 1