#include <stdio.h> int precao(int a, int b){ return a-b; } int main() { int a, b; scanf("%d", &a); scanf("%d", &b); printf("%d", precao(a,b)); return 0; }
To embed this project on your website, copy the following code and paste it into your website's HTML: